diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-09-08 21:48:56 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-09-08 21:48:56 +0200 |
| commit | 848982f156a86038438918e3a51cc0f04be9c78c (patch) | |
| tree | 4c9c3d70acecb835546e5a8092c380a820a7cc52 /Types/SocialSite.m | |
| parent | cec89d9e844dc39b84778e1b88e74e23f9ca2e6a (diff) | |
Fix the pinboard/self-hosted delicious API calls
Diffstat (limited to 'Types/SocialSite.m')
| -rw-r--r-- | Types/SocialSite.m | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Types/SocialSite.m b/Types/SocialSite.m index b73533f..369f86d 100644 --- a/Types/SocialSite.m +++ b/Types/SocialSite.m @@ -24,7 +24,8 @@ } } -+ (NSString *)siteURLForSite:(SocialSite)site { +// This is used for caching key ++ (NSString *)cacheKeyForSite:(SocialSite)site { switch (site) { case SocialSiteDelicious: return @"del.icio.us"; @@ -33,8 +34,9 @@ case SocialSitePinboard: return @"pinboard.in"; case SocialSiteSelfHostedDeliciousCompatible: + return @"self-hosted-delicious"; case SocialSiteLinkding: - return @""; // Will be provided by user as host + return @"linkding"; default: return nil; } |