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.
2 parents 8871269 + 1c44faa commit 1843761Copy full SHA for 1843761
src/TwitchStreamingTools/Views/MainWindow.axaml.cs
@@ -58,6 +58,11 @@ protected override void OnInitialized() {
58
}
59
60
if (serverVersion.name?.Equals(localVersion, StringComparison.InvariantCultureIgnoreCase) ?? true) {
61
+// Had to add this because code clean up tools were removing the "redundant" return statement.
62
+// which was causing the check to always be ignored.
63
+#if !DEBUG
64
+ return;
65
+#endif
66
67
68
#if !DEBUG
0 commit comments