Compare commits

...
1 Commits
Author SHA1 Message Date
orin d10e24cf5b Ignore case of specified build 2023-11-11 03:39:16 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ function uupFetchUpd(
[$build, $flags] = uupApiPrivateParseFlags($build);
$flagsStr = implode(',', $flags);
if($build == 'latest' || (!$build)) {
if(strtolower($build) == 'latest' || (!$build)) {
$build = uupApiPrivateGetLatestBuild();
}
+1 -1
View File
@@ -16,7 +16,7 @@ limitations under the License.
*/
function uupApiVersion() {
return '1.43.4';
return '1.43.5';
}
require_once dirname(__FILE__).'/auths.php';