You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The solution is likely to always coalesce to a non-null value (e.g. the empty string); we could either do it in the SELECT (if we know the value isn't used as a result), or globally in scrolling_window_order_by() (we need to see which SQLite type sorts lowest).
This is probably affecting other methods as well.
The text was updated successfully, but these errors were encountered:
(discovered during #196)
This happens because the pagination adds the equivalent of
WHERE kinda_title < :last_0
; if any of those is null, the result is null.reader/src/reader/_storage.py
Lines 475 to 477 in 30141c4
The solution is likely to always coalesce to a non-null value (e.g. the empty string); we could either do it in the SELECT (if we know the value isn't used as a result), or globally in scrolling_window_order_by() (we need to see which SQLite type sorts lowest).
This is probably affecting other methods as well.
The text was updated successfully, but these errors were encountered: