From da6a1f92caa31c85f9182bff4c29ceb5c72b3742 Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Thu, 13 Nov 2025 11:33:43 -0800 Subject: Don't show accounts in sidebar to reduce clutter. Admins can use menu bar or toolbar. More error handling. --- Hotline/macOS/Files/FilesView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hotline/macOS/Files/FilesView.swift') diff --git a/Hotline/macOS/Files/FilesView.swift b/Hotline/macOS/Files/FilesView.swift index ab93cbc..325af8c 100644 --- a/Hotline/macOS/Files/FilesView.swift +++ b/Hotline/macOS/Files/FilesView.swift @@ -432,7 +432,7 @@ struct FilesView: View { } let path: [String] = parentFolder?.path ?? [] - if try await self.model.newFolder(name: name, parentPath: path) == true { + if try await self.model.newFolder(name: name, parentPath: path) { try await self.model.getFileList(path: path) } } -- cgit