From 241450ee4539045b946c295bd60cd7d69b71e896 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 06 Aug 2011 03:27:30 -0400
Subject: [PATCH] - Fix unlocking in abort_request() (#1488025)
---
program/js/app.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/program/js/app.js b/program/js/app.js
index 66d24f2..e698e31 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3611,6 +3611,8 @@
var old_value = this.ksearch_value;
this.ksearch_value = q;
+ this.ksearch_destroy();
+
// ...string is empty
if (!q.length)
return;
@@ -3618,8 +3620,6 @@
// ...new search value contains old one and previous search result was empty
if (old_value && old_value.length && this.env.contacts && !this.env.contacts.length && q.indexOf(old_value) == 0)
return;
-
- this.ksearch_destroy();
var i, lock, source, xhr, reqid = new Date().getTime(),
threads = props && props.threads ? props.threads : 1,
@@ -5659,7 +5659,7 @@
if (r.request)
r.request.abort();
if (r.lock)
- this.set_busy(r.lock, false);
+ this.set_busy(false, null, r.lock);
};
// handle HTTP response
--
Gitblit v1.9.1