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:
authorJan Lukas Gernert <jangernert@gmail.com>2019-08-21 20:11:29 +0300
committerGitHub <noreply@github.com>2019-08-21 20:11:29 +0300
commitb05a107c6b3f877a8db773105c4f28f18329e924 (patch)
treec952d2c826cf9125280e0a8f748a7bb1eea8ac99
parent8895fd3dee447b6c350922db2e28fd72f664e8c2 (diff)
parentb817369f0913d37e38f14c3c9e23a15f49884a70 (diff)
Merge pull request #925 from aviskase/no-goa-pocket
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()