mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-05-25 06:58:23 -05:00
Fix build
Commit 56a4b4b1e3 broke the build when
automatic update checks are enabled. This should be fixed now.
This commit is contained in:
+1
-1
@@ -101,7 +101,7 @@ void MainWindow::init()
|
||||
if(Settings::getValue("checkversion", "enabled").toBool())
|
||||
{
|
||||
RemoteNetwork::get().fetch(QUrl("https://download.sqlitebrowser.org/currentrelease"), RemoteNetwork::RequestTypeCustom,
|
||||
QString(), QVariant(), [this](const QByteArray& reply) {
|
||||
QString(), [this](const QByteArray& reply) {
|
||||
QList<QByteArray> info = reply.split('\n');
|
||||
if(info.size() >= 2)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user