Sun, 29 Sep 2019 04:54:18 -0500
Remove the internal flag on the kwallet keyring so it can be used while the keyring api issue gets figured out
| libpurple/plugins/keyrings/kwallet/purplekwallet.cpp | file | annotate | diff | comparison | revisions |
--- a/libpurple/plugins/keyrings/kwallet/purplekwallet.cpp Thu Sep 26 21:36:13 2019 -0500 +++ b/libpurple/plugins/keyrings/kwallet/purplekwallet.cpp Sun Sep 29 04:54:18 2019 -0500 @@ -431,7 +431,14 @@ "authors", authors, "website", PURPLE_WEBSITE, "abi-version", PURPLE_ABI_VERSION, - "flags", PURPLE_PLUGIN_INFO_FLAGS_INTERNAL, + + /* This should be PURPLE_PLUGIN_INFO_FLAGS_INTERNAL, but there's an + * issue with purple_keyring_init which is causing issues for this. + * See the comments in + * https://bitbucket.org/pidgin/main/pull-requests/565. + */ + "flags", 0, + NULL ); }