Remove the internal flag on the kwallet keyring so it can be used while the keyring api issue gets figured out

Sun, 29 Sep 2019 04:54:18 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Sun, 29 Sep 2019 04:54:18 -0500
changeset 39925
ea8f90a385c5
parent 39924
54be9746932e
child 39926
af2417fdea65

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
 	);
 }

mercurial