From d367bab85656013c28344747d56a4be2429a485d Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Thu, 27 May 2021 14:49:44 +0200 Subject: [PATCH] fix check url for github meshlab version --- src/meshlab/mainwindow_Init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlab/mainwindow_Init.cpp b/src/meshlab/mainwindow_Init.cpp index ac1db6f1c..a1974e90b 100644 --- a/src/meshlab/mainwindow_Init.cpp +++ b/src/meshlab/mainwindow_Init.cpp @@ -1121,7 +1121,7 @@ void MainWindow::checkForUpdates(bool verboseFlag) if (settings.contains(checkForMonthlyAndBetasVar)) checkForMonthlyAndBetasVal = settings.value(checkForMonthlyAndBetasVar).toBool(); if (checkForMonthlyAndBetasVal){ - urlCheck = "https://github.com/cnr-isti-vclab/meshlab/blob/master/ML_VERSION"; + urlCheck = "https://raw.githubusercontent.com/cnr-isti-vclab/meshlab/master/ML_VERSION"; } int totalKV = settings.value("totalKV", 0).toInt(); int loadedMeshCounter = settings.value("loadedMeshCounter", 0).toInt();