summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.qml b/app/main.qml
index 4c4d7a9..2f6bda3 100644
--- a/app/main.qml
+++ b/app/main.qml
@@ -33,7 +33,7 @@ ApplicationWindow {
function findId(tid) {
for(var i = 0; i < libraryModel.count; i++) {
- if(tid == libraryModel.get(i).tid) {
+ if(tid === libraryModel.get(i).tid) {
return i;
}
}