Skip to content

Commit fdf70db

Browse files
authored
Update cuedao.cpp
1 parent 9db398a commit fdf70db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library/dao/cuedao.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ bool CueDAO::deleteCuesForTracks(const QList<TrackId>& trackIds) const {
148148

149149
QSqlQuery query(m_database);
150150
query.prepare(QStringLiteral("DELETE FROM " CUE_TABLE " WHERE track_id in (%1)")
151-
.arg(idList.join(",")));
151+
.arg(idList.join(",")));
152152
if (query.exec()) {
153153
return true;
154154
} else {

0 commit comments

Comments
 (0)