iens

Manager of links to read
git clone https://git.instinctive.eu/iens.git
Log | Files | Refs | README | LICENSE

commit 5fae3458d71ea09e95150c8d35b3fb95e89f31bc
parent 8e33e497f444cd6329a09bb3e95347e079a31c1b
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date:   Sat,  6 Jan 2024 17:14:04 +0000

Tag list is not indented
Diffstat:
Msrc/iens.scm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/iens.scm b/src/iens.scm @@ -243,7 +243,7 @@ (query (for-each-row* (lambda (name auto count) - (write-line (conc " " name (if (zero? auto) " (" "* (") count ")")))) + (write-line (conc name (if (zero? auto) " (" "* (") count ")")))) (sql db "SELECT name,auto,COUNT(tagrel.url_id) FROM tag OUTER LEFT JOIN tagrel ON id=tagrel.tag_id GROUP BY id ORDER BY name;")))