From 5b6d33bcb23fc530006e5af7af04dcd4a7545254 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Wed, 18 Oct 2017 20:29:34 +1300 Subject: [PATCH] Missing semicolon --- scripts/system/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/edit.js b/scripts/system/edit.js index 332c9ed6c3..39ab946aa3 100644 --- a/scripts/system/edit.js +++ b/scripts/system/edit.js @@ -1478,7 +1478,7 @@ function onFileOpenChanged(filename) { // disconnect the event, otherwise the requests will stack up try { // Not all calls to onFileOpenChanged() connect an event. - Window.openFileChanged.disconnect(onFileOpenChanged) + Window.openFileChanged.disconnect(onFileOpenChanged); } catch (e) { // Ignore. }