From 7d3e5633a43997598569014469704ed697561ba5 Mon Sep 17 00:00:00 2001 From: jkhradil Date: Tue, 13 Feb 2024 10:12:27 +0100 Subject: [PATCH] Do not show full storage notification to users with 0 Bytes quota Resolves #43535 Signed-off-by: jkhradil --- apps/files/src/components/NavigationQuota.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/src/components/NavigationQuota.vue b/apps/files/src/components/NavigationQuota.vue index 943d61cf0f5dc..f8062b009c931 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?.free <= 0 && this.storageStats?.quota != 0) { this.showStorageFullWarning() } },