From 6470598f892d8f3d5570739c5b41583d0931cf2c Mon Sep 17 00:00:00 2001 From: manongjohn Date: Wed, 7 Apr 2021 15:06:27 -0400 Subject: [PATCH] Fix checking for version update --- toonz/sources/toonz/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toonz/sources/toonz/mainwindow.cpp b/toonz/sources/toonz/mainwindow.cpp index cde55056..8b079e74 100644 --- a/toonz/sources/toonz/mainwindow.cpp +++ b/toonz/sources/toonz/mainwindow.cpp @@ -1437,7 +1437,7 @@ extern const char *applicationVersion; void MainWindow::checkForUpdates() { // Since there is only a single version of Tahoma, we can do a simple check // against a string - QString updateUrl("https://tahoma2d.org/files/tahoma-version.txt"); + QString updateUrl("http://tahoma2d.org/files/tahoma-version.txt"); m_updateChecker = new UpdateChecker(updateUrl); connect(m_updateChecker, SIGNAL(done(bool)), this,