Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuliya Bagriy <aviskase@gmail.com>2019-07-29 02:51:36 +0300
committerYuliya Bagriy <aviskase@gmail.com>2019-07-29 02:51:36 +0300
commitb817369f0913d37e38f14c3c9e23a15f49884a70 (patch)
tree07a012ce4a167ef1a2b7ff90e925fc5ae721ed70
parent140462ecdaf9f2e3858ed882130d4eada9e87070 (diff)
Do not try to use deprecated GOA Pocket support
-rw-r--r--plugins/share/Pocket/PocketAPI.vala16
1 files changed, 1 insertions, 15 deletions
diff --git a/plugins/share/Pocket/PocketAPI.vala b/plugins/share/Pocket/PocketAPI.vala
index 511ce59d..72c1729f 100644
--- a/plugins/share/Pocket/PocketAPI.vala
+++ b/plugins/share/Pocket/PocketAPI.vala
@@ -250,21 +250,7 @@ public class FeedReader.PocketAPI : ShareAccountInterface, Peas.ExtensionBase {
public bool useSystemAccounts()
{
- try
- {
- Goa.Client? client = new Goa.Client.sync();
- if(client != null)
- {
- return true;
- }
-
- return false;
- }
- catch(GLib.Error e)
- {
- Logger.debug("PocketAPI.useSystemAccounts(): %s".printf(e.message));
- return false;
- }
+ return false;
}
public string pluginID()