trim postinstall message to avoid empty new lines

This commit is contained in:
Johannes Zellner
2025-03-18 19:20:32 +01:00
parent 7d07e34d6b
commit e8bd839281
+1 -1
View File
@@ -144,7 +144,7 @@ function create() {
if (app.sso) text = text.replace(/<nosso>[^]*?<\/nosso>/g, '');
else text = text.replace(/<sso>[^]*?<\/sso>/g, '');
app.manifest.postInstallMessage = text;
app.manifest.postInstallMessage = text.trim();
}
return app;