changeset 65:da9cee9c5de3

Remove old comment & update TODO
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 04 Dec 2020 17:31:24 +0100
parents 79b0186c7331
children cc455c154bcc
files TODO src/notifier.rs
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/TODO	Fri Dec 04 14:27:29 2020 +0100
+++ b/TODO	Fri Dec 04 17:31:24 2020 +0100
@@ -2,7 +2,10 @@
 
 * UI
  * trackme: Tell user to fill secret/client
+  * Show link to livemap
  * show circle radius by accuracy
+* Geohub
+ * Unlisten from web handler
 
 FEATURES
 
--- a/src/notifier.rs	Fri Dec 04 14:27:29 2020 +0100
+++ b/src/notifier.rs	Fri Dec 04 17:31:24 2020 +0100
@@ -179,7 +179,6 @@
             unlisten(db.0, client.as_str(), &secret).ok();
 
             // These queries use the primary key index returning one row only and will be quite fast.
-            // Still: One query per client.
             let rows = db.check_for_new_rows(client.as_str(), &secret, &None, &Some(1));
             if let Some((geo, last)) = rows {
                 for request in clients.remove(&client_id).unwrap_or(vec![]) {