mirror of
https://github.com/thelounge/thelounge
synced 2025-02-16 21:28:23 +00:00
sqlite: move export to bottom of the file
This makes it easier to see what's getting exported, rather than if it's interspersed randomly in the middle of the file
This commit is contained in:
parent
bea4545abf
commit
f6b292107e
1 changed files with 2 additions and 2 deletions
|
@ -268,8 +268,6 @@ class SqliteMessageStorage implements ISqliteMessageStorage {
|
|||
}
|
||||
}
|
||||
|
||||
export default SqliteMessageStorage;
|
||||
|
||||
// TODO: type any
|
||||
function parseSearchRowsToMessages(id: number, rows: any[]) {
|
||||
const messages: Msg[] = [];
|
||||
|
@ -287,3 +285,5 @@ function parseSearchRowsToMessages(id: number, rows: any[]) {
|
|||
|
||||
return messages;
|
||||
}
|
||||
|
||||
export default SqliteMessageStorage;
|
||||
|
|
Loading…
Add table
Reference in a new issue