Skip to content

Commit

Permalink
Hide windows incompatible path msg by default (#1573)
Browse files Browse the repository at this point in the history
Co-authored-by: yangheran <[email protected]>
  • Loading branch information
feiniks and yangheran authored Nov 6, 2024
1 parent e682825 commit 6760bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/settings-mgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ bool SettingsManager::getHideWindowsIncompatibilityPathMsg()
{
QString str;
seafApplet->rpcClient()->seafileGetConfig(kHideWindowsIncompatiblePathNotification, &str);
return str == "true";
return str != "false";
}

void SettingsManager::setHideWindowsIncompatibilityPathMsg(bool enabled)
Expand Down

0 comments on commit 6760bd5

Please sign in to comment.