diff --git a/.vs/OpenSaveCloudClient/DesignTimeBuild/.dtbcache.v2 b/.vs/OpenSaveCloudClient/DesignTimeBuild/.dtbcache.v2 index 409ed5f..f07df22 100644 Binary files a/.vs/OpenSaveCloudClient/DesignTimeBuild/.dtbcache.v2 and b/.vs/OpenSaveCloudClient/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/OpenSaveCloudClient/FileContentIndex/5b994d09-8dbd-4110-a40f-5c17ed8472d3.vsidx b/.vs/OpenSaveCloudClient/FileContentIndex/5b994d09-8dbd-4110-a40f-5c17ed8472d3.vsidx new file mode 100644 index 0000000..fad0b4e Binary files /dev/null and b/.vs/OpenSaveCloudClient/FileContentIndex/5b994d09-8dbd-4110-a40f-5c17ed8472d3.vsidx differ diff --git a/.vs/OpenSaveCloudClient/v17/.futdcache.v1 b/.vs/OpenSaveCloudClient/v17/.futdcache.v1 index f9530b4..6996ff2 100644 Binary files a/.vs/OpenSaveCloudClient/v17/.futdcache.v1 and b/.vs/OpenSaveCloudClient/v17/.futdcache.v1 differ diff --git a/.vs/ProjectEvaluation/opensavecloudclient.metadata.v2 b/.vs/ProjectEvaluation/opensavecloudclient.metadata.v2 index a6a96fa..e570fbd 100644 Binary files a/.vs/ProjectEvaluation/opensavecloudclient.metadata.v2 and b/.vs/ProjectEvaluation/opensavecloudclient.metadata.v2 differ diff --git a/.vs/ProjectEvaluation/opensavecloudclient.projects.v2 b/.vs/ProjectEvaluation/opensavecloudclient.projects.v2 index cd3b3b7..95f8220 100644 Binary files a/.vs/ProjectEvaluation/opensavecloudclient.projects.v2 and b/.vs/ProjectEvaluation/opensavecloudclient.projects.v2 differ diff --git a/OpenSaveCloudClient/GameLibraryForm.cs b/OpenSaveCloudClient/GameLibraryForm.cs index 83e1efd..e3bf5f4 100644 --- a/OpenSaveCloudClient/GameLibraryForm.cs +++ b/OpenSaveCloudClient/GameLibraryForm.cs @@ -51,13 +51,16 @@ namespace OpenSaveCloudClient } else { + string taskUuid = StartTask("Detecting changes...", true, 1); try { saveManager.DetectChanges(); + SetTaskEnded(taskUuid); } catch (Exception e) { logManager.AddError(e); + SetTaskFailed(taskUuid); } this.Invoke((MethodInvoker)delegate { SetAdminControls(); @@ -122,13 +125,16 @@ namespace OpenSaveCloudClient { new Thread(() => { + string taskUuid = StartTask("Detecting changes...", true, 1); try { saveManager.DetectChanges(); + SetTaskEnded(taskUuid); } - catch (Exception e) + catch (Exception e) { logManager.AddError(e); + SetTaskFailed(taskUuid); } }).Start(); SetAdminControls();