diff options
| author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2026-07-25 00:41:52 +0530 |
|---|---|---|
| committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2026-07-25 00:41:52 +0530 |
| commit | cbd341f170843fa27422e1bab189447ba0b9aa99 (patch) | |
| tree | 03bb20f8f39f957a1013c8613f2e04881d3848f3 | |
| parent | b157a25b2dfff122908da1c89b7a620655521a64 (diff) | |
| -rw-r--r-- | SoundboardUpdater.py | 2 | ||||
| -rw-r--r-- | main.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SoundboardUpdater.py b/SoundboardUpdater.py index 445b4bc..ce6ee79 100644 --- a/SoundboardUpdater.py +++ b/SoundboardUpdater.py @@ -117,7 +117,7 @@ class SoundboardUpdaterWorker(QThread): self.download_url = self.soundboard.update_url + remote_version + ".zip" - if remote_version != self.soundboard.soundboard_version: + if remote_version != self.soundboard.soundboard_version and remote_version != "": head = requests.head(self.download_url, timeout=5) update_size = self.format_size( int(head.headers.get("content-length", 0)) @@ -25,7 +25,7 @@ from Soundboard import Soundboard from SoundboardEngine import SoundboardEngineWindow from SoundboardUpdater import SoundboardUpdaterWindow -APP_VERSION = "0.3.2" +APP_VERSION = "0.3.3" if __name__ == "__main__": config_path = ( |