mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Fix review comments. Also consider exclude.lst.
Signed-off-by: allexzander <blackslayer4@gmail.com>
This commit is contained in:
parent
bb55232e8e
commit
b150de9106
1 changed files with 1 additions and 1 deletions
|
@ -482,7 +482,7 @@ bool FileSystem::isLnkFile(const QString &filename)
|
|||
|
||||
bool FileSystem::isExcludeFile(const QString &filename)
|
||||
{
|
||||
return filename.endsWith(QLatin1String(".sync-exclude.lst"));
|
||||
return filename.endsWith(QStringLiteral("sync-exclude.lst")) || filename.endsWith(QStringLiteral("exclude.lst"));
|
||||
}
|
||||
|
||||
bool FileSystem::isJunction(const QString &filename)
|
||||
|
|
Loading…
Reference in a new issue