mirror of
https://github.com/abraunegg/onedrive
synced 2026-03-14 14:35:46 +01:00
Support the moving of Shared Folder Links to other folders (#3052)
* Implement Feature Request #2824 to support the moving of Shared Folder Links to other folders
* Be consistent in log output for Personal Accounts, despite personal accounts not supporting relocatable Shared Folder links
* Update /delta generation message to include the driveId
* Code / Technical change was merged into https://github.com/abraunegg/onedrive/pull/3051 and committed to 'master' via 5a20154726
This commit is contained in:
parent
27a25bef4e
commit
4418d0d636
2 changed files with 4 additions and 3 deletions
|
|
@ -652,7 +652,7 @@ final class ItemDatabase {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// returns true if an item id is in the database
|
||||
bool idInLocalDatabase(const(string) driveId, const(string) id) {
|
||||
synchronized(databaseLock) {
|
||||
|
|
|
|||
|
|
@ -7534,13 +7534,14 @@ class SyncEngine {
|
|||
} catch (OneDriveException exception) {
|
||||
// Display error message
|
||||
displayOneDriveErrorMessage(exception.msg, getFunctionName!({}));
|
||||
|
||||
|
||||
// OneDrive API Instance Cleanup - Shutdown API, free curl object and memory
|
||||
generateDeltaResponseOneDriveApiInstance.releaseCurlEngine();
|
||||
generateDeltaResponseOneDriveApiInstance = null;
|
||||
|
||||
// Perform Garbage Collection
|
||||
GC.collect();
|
||||
|
||||
|
||||
// Must force exit here, allow logging to be done
|
||||
forceExit();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue