mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 11:18:41 +00:00
stupid mistake
This commit is contained in:
parent
23fe179a1f
commit
5944aa9601
2 changed files with 2 additions and 2 deletions
|
|
@ -148,7 +148,7 @@ class MessagesDao extends DatabaseAccessor<TwonlyDatabase>
|
|||
final query = select(messages)
|
||||
..where((t) => t.messageOtherId.equals(messageOtherId));
|
||||
final entry = await query.getSingleOrNull();
|
||||
return entry == null;
|
||||
return entry != null;
|
||||
}
|
||||
|
||||
SingleOrNullSelectable<Message> getMessageByMessageId(int messageId) {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ description: "Send pictures to friends in real time and be sure you are the only
|
|||
# Prevent accidental publishing to pub.dev.
|
||||
publish_to: 'none'
|
||||
|
||||
version: 0.0.12+12
|
||||
version: 0.0.13+13
|
||||
|
||||
environment:
|
||||
sdk: ^3.6.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue