This commit is contained in:
2019-11-13 23:14:40 +00:00
parent 7148291c20
commit 1a6dac33e5
3 changed files with 6 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ var lastMessageHash = 0;
function dealWithError(msg, vm) {
//Check if this is the same message again as last time to avoid
//repetitive loops of useless messages
var newHash = window.$gz.gzutil.quickHash(msg);
var newHash = window.$gz.util.quickHash(msg);
if (newHash == lastMessageHash) {
return;
}