this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feeds/rapidfire.py: debug fixups

+1 -2
+1 -2
feeds/rapidfire.py
··· 90 90 91 91 def serve_feed_debug(self, limit, offset, langs): 92 92 query = ( 93 - "select count(*) from posts;" 94 93 "select *, unixepoch('now') from posts order by create_ts desc limit :limit offset :offset;" 95 94 ) 96 95 bindings = dict(limit=limit, offset=offset) 97 96 return apsw.ext.format_query_table( 98 97 self.db_cnx, query, bindings, 99 - string_sanitize=2, text_width=9999, use_unicode=False, quote=True 98 + string_sanitize=2, text_width=9999, use_unicode=True 100 99 )