Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling-error (reported during Debian build) #2890

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ A special thankyou to all those who helped with testing and providing feedback d
* Fixed how the application handles 429 response codes from OneDrive (critical update)
* Fixed building on Alpine Linux under Docker
* Fixed how the 'username' is determined from the running process for logfile naming
* Fixed file handling when a failed download has occured due to exiting via CTRL-C
* Fixed file handling when a failed download has occurred due to exiting via CTRL-C
* Fixed an unhandled exception when OneDrive throws an error response on initialising
* Fixed the handling of moving files into a skipped .folder when skip_dotfiles = true
* Fixed the regex parsing of response URI to avoid potentially generating a bad request to OneDrive, leading to a 'AADSTS9002313: Invalid request. Request is malformed or invalid.' response.
Expand Down
2 changes: 1 addition & 1 deletion src/curlEngine.d
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ CurlEngine getCurlInstance() {
// Is this engine stopped?
if (curlEngine.http.isStopped) {
// return a new curl engine as a stopped one cannot be used
addLogEntry("CurlEngine was in a stoppped state (not usable) - constructing a new CurlEngine instance", ["debug"]);
addLogEntry("CurlEngine was in a stopped state (not usable) - constructing a new CurlEngine instance", ["debug"]);
return new CurlEngine; // Constructs a new CurlEngine with a fresh HTTP instance
} else {
// return an existing curl engine
Expand Down
2 changes: 1 addition & 1 deletion src/webhook.d
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class OneDriveWebhook {

private void logSubscriptionError(OneDriveException e) {
// Log a message to the GUI only
addLogEntry("ERROR: An issue has occured with webhook subscriptions: " ~ e.error["error"]["message"].str, ["notify"]);
addLogEntry("ERROR: An issue has occurred with webhook subscriptions: " ~ e.error["error"]["message"].str, ["notify"]);
// Use the standard OneDrive API logging method
displayOneDriveErrorMessage(e.msg, getFunctionName!({}));
}
Expand Down
Loading