From: Sebastian Goth Date: Tue, 19 Jan 2010 14:24:34 +0000 (+0100) Subject: Update markerline correctly on postgres X-Git-Tag: 0.6-beta1~71 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=d13c54e1850b5ed6980e6350beaf4469e680b4f1 Update markerline correctly on postgres --- diff --git a/src/core/postgresqlstorage.cpp b/src/core/postgresqlstorage.cpp index bae7c9fc..25053735 100644 --- a/src/core/postgresqlstorage.cpp +++ b/src/core/postgresqlstorage.cpp @@ -1151,7 +1151,7 @@ void PostgreSqlStorage::setBufferMarkerLineMsg(UserId user, const BufferId &buff query.bindValue(":userid", user.toInt()); query.bindValue(":bufferid", bufferId.toInt()); - query.bindValue(":lastseenmsgid", msgId.toInt()); + query.bindValue(":markerlinemsgid", msgId.toInt()); safeExec(query); watchQuery(query); }