Fix wrong check for full version

This commit is contained in:
tobspr 2020-06-13 11:06:15 +02:00
parent c963c961a0
commit 444908d22f
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ if (options.embed) {
}
// Allow testing full version outside of standalone
if (options.fullVersion && !G_IS_PROD) {
if (options.fullVersion && !G_IS_RELEASE) {
queryParamOptions.fullVersion = true;
}