fix selfhost

This commit is contained in:
Emily
2025-01-17 17:40:20 +01:00
parent fb89c87489
commit dbcda95823
4 changed files with 11 additions and 3 deletions

View File

@@ -3,5 +3,5 @@
const app = useRuntimeConfig();
export function useSelfhosted() {
return app.public.SELFHOSTED === 'TRUE' || app.public.SELFHOSTED !== 'true';
return app.public.SELFHOSTED === 'TRUE' || app.public.SELFHOSTED === 'true';
}