Comparer les révisions
2 Révisions
a9d3f7897a
...
5272365e5a
Auteur | SHA1 | Date | |
---|---|---|---|
5272365e5a | |||
5c899af26f |
@ -25,10 +25,22 @@ SaveFileResult FileSaver::addFile(QString path)
|
||||
QString absPath = info.absoluteFilePath();
|
||||
|
||||
auto mtime = info.lastModified().toSecsSinceEpoch();
|
||||
if(this->dbService->fileExistsInDatabase(absPath, mtime))
|
||||
|
||||
bool exists = false;
|
||||
if(this->fileSaverOptions.fillExistingContentless)
|
||||
{
|
||||
exists = this->dbService->fileExistsInDatabase(absPath, mtime, 'c');
|
||||
}
|
||||
else
|
||||
{
|
||||
exists = this->dbService->fileExistsInDatabase(absPath, mtime);
|
||||
}
|
||||
|
||||
if(exists)
|
||||
{
|
||||
return SKIPPED;
|
||||
}
|
||||
|
||||
return saveFile(info);
|
||||
}
|
||||
|
||||
|
@ -151,7 +151,7 @@ QSqlQuery SqliteDbService::exec(QString querystr, std::initializer_list<QVariant
|
||||
}
|
||||
if(!query.exec())
|
||||
{
|
||||
throw LooqsGeneralException("Error while trying to query for file existance: " + query.lastError().text());
|
||||
throw LooqsGeneralException("Error while exec(): " + query.lastError().text());
|
||||
}
|
||||
return query;
|
||||
}
|
||||
|
Chargement…
x
Référencer dans un nouveau ticket
Bloquer un utilisateur