From 63cf2adce807d2b5a510c07bc62896dd201b0149 Mon Sep 17 00:00:00 2001 From: APTX Date: Sun, 26 May 2013 04:25:50 +0200 Subject: [PATCH] Fix typo. This doesn't actually fix anything. Named binds are emulated with positional ones on pg so the result should be the same. --- localmylist/database.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localmylist/database.cpp b/localmylist/database.cpp index f353c02..9106f76 100644 --- a/localmylist/database.cpp +++ b/localmylist/database.cpp @@ -1198,7 +1198,7 @@ bool Database::clearPendingMyListUpdate(const PendingMyListUpdate &request) "UPDATE pending_mylist_update SET finished = NOW() " " WHERE update_id = :updateId "); - q.bindValue(":update_id", request.updateId); + q.bindValue(":updateId", request.updateId); return exec(q); } -- 2.52.0