We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5dc21d commit 62c11a0Copy full SHA for 62c11a0
Wox.Core/Configuration/Portable.cs
@@ -40,14 +40,11 @@ public void DisablePortableMode()
40
}
41
catch (Exception e)
42
{
43
-#if DEBUG
44
- portabilityUpdater.Dispose();
45
- throw;
46
-#else
47
portabilityUpdater.Dispose();
+#if !DEBUG
48
Log.Exception("Portable", "Error occured while disabling portable mode", e);
49
50
#endif
+ throw;
51
52
53
@@ -76,14 +73,11 @@ public void EnablePortableMode()
76
73
77
74
78
75
79
80
81
82
83
84
Log.Exception("Portable", "Error occured while enabling portable mode", e);
85
86
87
88
89
0 commit comments