3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/kde/akonadi/0002-akonadi-timestamps.patch

27 lines
1.1 KiB
Diff
Raw Normal View History

2021-04-25 14:05:06 +01:00
From f6c446cf6fab2edbd2606b4c6100903e9437362a Mon Sep 17 00:00:00 2001
2020-07-13 17:48:47 +01:00
From: Thomas Tuegel <ttuegel@mailbox.org>
2021-04-25 14:05:06 +01:00
Date: Sun, 25 Apr 2021 08:01:02 -0500
2020-07-13 17:48:47 +01:00
Subject: [PATCH 2/3] akonadi timestamps
---
src/server/storage/dbconfigmysql.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/server/storage/dbconfigmysql.cpp b/src/server/storage/dbconfigmysql.cpp
2021-04-25 14:05:06 +01:00
index 3550f9d..e9e8887 100644
2020-07-13 17:48:47 +01:00
--- a/src/server/storage/dbconfigmysql.cpp
+++ b/src/server/storage/dbconfigmysql.cpp
2021-04-25 14:05:06 +01:00
@@ -241,8 +241,7 @@ bool DbConfigMysql::startInternalServer()
2020-07-13 17:48:47 +01:00
bool confUpdate = false;
QFile actualFile(actualConfig);
// update conf only if either global (or local) is newer than actual
2021-04-25 14:05:06 +01:00
- if ((QFileInfo(globalConfig).lastModified() > QFileInfo(actualFile).lastModified())
- || (QFileInfo(localConfig).lastModified() > QFileInfo(actualFile).lastModified())) {
2020-07-13 17:48:47 +01:00
+ if (true) {
QFile globalFile(globalConfig);
QFile localFile(localConfig);
if (globalFile.open(QFile::ReadOnly) && actualFile.open(QFile::WriteOnly)) {
--
2021-04-25 14:05:06 +01:00
2.31.1
2020-07-13 17:48:47 +01:00