summary refs log tree commit diff
path: root/events.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-12 11:15:44 -0400
committerJune McEnroe <june@causal.agency>2020-07-12 11:15:44 -0400
commit160a24738a9821568cb422d69f169f5353d8b22c (patch)
tree3ca1011fd9a6ece311995de0a4bd1224c30cad60 /events.c
parentSet messages to break lines anywhere if need be (diff)
downloadscooper-160a24738a9821568cb422d69f169f5353d8b22c.tar.gz
scooper-160a24738a9821568cb422d69f169f5353d8b22c.zip
Clean up page error handling
Diffstat (limited to '')
-rw-r--r--events.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/events.c b/events.c
index 89da92d..e018087 100644
--- a/events.c
+++ b/events.c
@@ -180,8 +180,8 @@ enum kcgi_err pageEvents(struct kreq *req) {
 		event.target = sqlite3_column_text(events, i++);
 		event.message = sqlite3_column_text(events, i++);
 		error = htmlEvent(&html, scope, event);
-		if (error) break;
+		if (error) return error;
 	}
 	if (result != SQLITE_DONE) errx(EX_SOFTWARE, "%s", sqlite3_errmsg(db));
-	return error || htmlFooter(&html) || khtml_close(&html);
+	return htmlFooter(&html) || khtml_close(&html);
 }
ommit/scoop.c?h=1.4&id=6c345284e3339c6b2ccd0b14876b22697cfa8981&follow=1'>Add missing includeJune McEnroe 2019-12-31Use standout mode for highlightingJune McEnroe 2019-12-31Rewrite scoop(1) argument descriptionsJune McEnroe 2019-12-31Color both nicks in a changeJune McEnroe 2019-12-31Implement nick-colored outputJune McEnroe 2019-12-31Only enable highlighting on terminal outputJune McEnroe 2019-12-31Set up pager pipeJune McEnroe 2019-12-30Normalize date inputJune McEnroe 2019-12-30Add initial rough version of scoopJune McEnroe 2019-12-30Join with USING wherever possibleJune McEnroe 2019-12-30Add -D flag to prospective scoop manualJune McEnroe 2019-12-30Order results by ID in outer query in litterboxJune McEnroe 2019-12-30Use X macro for Type enumJune McEnroe 2019-12-30Remove scoop -ABCJune McEnroe 2019-12-30Add limit option for litterbox's search query interfaceJune McEnroe