fix: while connected to MySQL if internet was lost no qso would be logged anymore

This commit is contained in:
2026-07-12 18:01:03 +02:00
parent 7398261c50
commit a00817b93e
16 changed files with 850 additions and 9 deletions
+5 -3
View File
@@ -1,7 +1,9 @@
//go:build !windows
//go:build !windows || bindings
package main
// acquireSingleInstance is a no-op off Windows (the single-instance guard uses a
// Windows named mutex). Always allows the app to start.
// acquireSingleInstance is a no-op off Windows (the guard uses a Windows named
// mutex), and during Wails' binding generation (the `bindings` tag) — that step
// runs this binary, and a real OpsLog already running would otherwise make it
// exit before Wails could reflect the bindings.
func acquireSingleInstance() bool { return true }