Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a47efd1

Browse files
committedJan 23, 2025·
fix: Properly read updater channel before returning version channel as a fallback
Signed-off-by: Julius Knorr <jus@bitgrid.net>
1 parent e54c078 commit a47efd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/public/ServerVersion.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function getVersionString(): string {
7777
* @since 31.0.0
7878
*/
7979
public function getChannel(): string {
80-
return $this->channel;
80+
return Server::get(IConfig::class)->getSystemValueString('updater.release.channel', $this->channel);
8181
}
8282

8383
/**

0 commit comments

Comments
 (0)
Please sign in to comment.