From 15d8f49ce9fa354ae5d8f0752e3e6624d52cf33b Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Mon, 5 Jun 2023 22:01:21 +0200 Subject: [PATCH] Added error handler for folder download --- .../Shared/Components/FileManagerPartials/FileManager.razor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Moonlight/Shared/Components/FileManagerPartials/FileManager.razor b/Moonlight/Shared/Components/FileManagerPartials/FileManager.razor index cedca894..5925c9d2 100644 --- a/Moonlight/Shared/Components/FileManagerPartials/FileManager.razor +++ b/Moonlight/Shared/Components/FileManagerPartials/FileManager.razor @@ -185,6 +185,8 @@ else await ToastService.Info(SmartTranslateService.Translate("Starting download")); } } + else + await ToastService.Error(SmartTranslateService.Translate("You are not able to download folders using the moonlight file manager")); } });