From 4bcff7d991b37c911276eee87f4c8ef0c2b1f590 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Thu, 13 Jul 2023 09:28:54 +0800 Subject: [PATCH] Set sharingAvailable property in FileDetails from Folder account capabilities Signed-off-by: Claudio Cambra --- src/gui/filedetails/filedetails.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/filedetails/filedetails.cpp b/src/gui/filedetails/filedetails.cpp index 2e24dc2659..58c1854ea8 100644 --- a/src/gui/filedetails/filedetails.cpp +++ b/src/gui/filedetails/filedetails.cpp @@ -62,6 +62,7 @@ void FileDetails::setLocalPath(const QString &localPath) connect(&_fileWatcher, &QFileSystemWatcher::fileChanged, this, &FileDetails::refreshFileDetails); const auto folder = FolderMan::instance()->folderForPath(_localPath); + Q_ASSERT(folder); const auto file = _localPath.mid(folder->cleanPath().length() + 1); if (!folder->journalDb()->getFileRecord(file, &_fileRecord)) { @@ -74,6 +75,8 @@ void FileDetails::setLocalPath(const QString &localPath) updateLockExpireString(); updateFileTagModel(folder); + _sharingAvailable = folder->accountState()->account()->capabilities().shareAPI(); + Q_EMIT fileChanged(); }