mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Small coding improvements
Signed-off-by: Dries Mys <dries.mys@my-dreams.be>
This commit is contained in:
parent
e9aa97682c
commit
55f27cdb96
@ -564,15 +564,17 @@ void Folder::slotWatchedPathChanged(const QString &path, ChangeReason reason)
|
||||
if (pathIsIgnored(path)) {
|
||||
const auto pinState = _vfs->pinState(relativePath.toString());
|
||||
if (!pinState || *pinState != PinState::Excluded) {
|
||||
if (!_vfs->setPinState(relativePath.toString(), PinState::Excluded))
|
||||
if (!_vfs->setPinState(relativePath.toString(), PinState::Excluded)) {
|
||||
qCWarning(lcFolder) << "Could not set pin state of" << relativePath << "to excluded";
|
||||
}
|
||||
}
|
||||
return;
|
||||
} else {
|
||||
const auto pinState = _vfs->pinState(relativePath.toString());
|
||||
if (pinState && *pinState == PinState::Excluded) {
|
||||
if (!_vfs->setPinState(relativePath.toString(), PinState::Inherited))
|
||||
if (!_vfs->setPinState(relativePath.toString(), PinState::Inherited)) {
|
||||
qCWarning(lcFolder) << "Could not switch pin state of" << relativePath << "from" << *pinState << "to inherited";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -229,8 +229,9 @@ Result<Vfs::ConvertToPlaceholderResult, QString> VfsCfApi::convertToPlaceholder(
|
||||
if (item._type != ItemTypeDirectory && OCC::FileSystem::isLnkFile(filename)) {
|
||||
qCInfo(lcCfApi) << "File \"" << filename << "\" is a Windows shortcut. Not converting it to a placeholder.";
|
||||
const auto pinState = pinStateLocal(localPath);
|
||||
if (!pinState || *pinState != PinState::Excluded)
|
||||
if (!pinState || *pinState != PinState::Excluded) {
|
||||
setPinStateLocal(localPath, PinState::Excluded);
|
||||
}
|
||||
return Vfs::ConvertToPlaceholderResult::Ok;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user