Skip to content

Commit

Permalink
Fix books and comicbooks display order
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiano committed Aug 10, 2024
1 parent f5f6d88 commit f695695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static List<BookshelfItem> GetComicBooks(SqliteConnection connection)
@"
SELECT Date, Publisher, Title, Format, Pages, Issues
FROM ComicBook
ORDER BY Date, Title
ORDER BY Id
";

using var reader = command.ExecuteReader();
Expand Down Expand Up @@ -113,7 +113,7 @@ private static List<BookshelfItem> GetBooks(SqliteConnection connection)
@"
SELECT Date, Publisher, Title, Format, Pages, Duration
FROM Book
ORDER BY Date, Title
ORDER BY Id
";

using var reader = command.ExecuteReader();
Expand Down

0 comments on commit f695695

Please sign in to comment.