diff --git a/apps/files/src/components/NavigationQuota.vue b/apps/files/src/components/NavigationQuota.vue index 943d61cf0f5dc..5918e9a50b02f 100644 --- a/apps/files/src/components/NavigationQuota.vue +++ b/apps/files/src/components/NavigationQuota.vue @@ -88,8 +88,8 @@ export default { }, mounted() { - // Warn the user if the available storage is 0 on page load - if (this.storageStats?.free <= 0) { + // Warn the user if the available storage is 0 on page load, except for users with 0 B quota + if (this.storageStats?.quota != 0 && this.storageStats?.free <= 0) { this.showStorageFullWarning() } },