diff options
author | Marvin W <git@larma.de> | 2017-03-12 02:28:23 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2017-03-12 03:17:21 +0100 |
commit | a9ea0e9f87e71c60bc570066525d3e3634fbdcc0 (patch) | |
tree | e0db0fdd3cae07ee731de8e6ea1b112537323ebc /main | |
parent | 7e1ecb34cb1eca2b74949c7ddc2ad52fb02e3a77 (diff) | |
download | dino-a9ea0e9f87e71c60bc570066525d3e3634fbdcc0.tar.gz dino-a9ea0e9f87e71c60bc570066525d3e3634fbdcc0.zip |
Split OMEMO plug-in into files, various fixes
Diffstat (limited to 'main')
-rw-r--r-- | main/src/main.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main.vala b/main/src/main.vala index 0fe72878..dfaa661e 100644 --- a/main/src/main.vala +++ b/main/src/main.vala @@ -10,7 +10,7 @@ void main(string[] args) { foreach(string plugin in new string[]{"omemo", "openpgp"}) { try { loader.load(plugin, app); - } catch (Plugins.Error e) { + } catch (Error e) { print(@"Error loading plugin $plugin: $(e.message)\n"); } } |