]> git.mxchange.org Git - friendica.git/commitdiff
Update src/Module/Admin/Summary.php
authorMichael Vogel <icarus@dabo.de>
Sun, 22 Jan 2023 20:35:24 +0000 (21:35 +0100)
committerGitHub <noreply@github.com>
Sun, 22 Jan 2023 20:35:24 +0000 (21:35 +0100)
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
src/Module/Admin/Summary.php

index f9c8cefbb613d5d6b59f092b422635f8ebb9cce4..9ca71e33d2487170a9e6f9494b78c44bedf9946b 100644 (file)
@@ -79,7 +79,7 @@ class Summary extends BaseAdmin
                // Check if github.com/friendica/stable/VERSION is higher then
                // the local version of Friendica. Check is opt-in, source may be stable or develop branch
                if (DI::config()->get('system', 'check_new_version_url', 'none') != 'none') {
-                       $gitversion = DI::keyValue()->get('git_friendica_version');
+                       $gitversion = DI::keyValue()->get('git_friendica_version') ?? ''; 
 
                        if (version_compare(App::VERSION, $gitversion) < 0) {
                                $warningtext[] = DI::l10n()->t('There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s', App::VERSION, $gitversion);