diff options
author | Marvin W <git@larma.de> | 2017-03-12 19:33:31 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2017-03-12 20:55:11 +0100 |
commit | c2643a45b0dc05c4fd82ec7d32577700dae7450e (patch) | |
tree | d8a52d8eeee351f8279f9827b7e6d1b8024e7beb /plugins/omemo/src/manager.vala | |
parent | 4f34e431163ac49e2c41079d44c5dd4a71b362d1 (diff) | |
download | dino-c2643a45b0dc05c4fd82ec7d32577700dae7450e.tar.gz dino-c2643a45b0dc05c4fd82ec7d32577700dae7450e.zip |
Qlite: Return OptionalRow instead of Row?, add ability to remove columns on version upgrade
Diffstat (limited to 'plugins/omemo/src/manager.vala')
-rw-r--r-- | plugins/omemo/src/manager.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/omemo/src/manager.vala b/plugins/omemo/src/manager.vala index e5db631e..b2226e2a 100644 --- a/plugins/omemo/src/manager.vala +++ b/plugins/omemo/src/manager.vala @@ -99,7 +99,7 @@ public class Manager : StreamInteractionModule, Object { private void on_store_created(Account account, Store store) { Qlite.Row? row = null; try { - row = db.identity.row_with(db.identity.account_id, account.id); + row = db.identity.row_with(db.identity.account_id, account.id).inner; } catch (Error e) { // Ignore error } |