]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/BaseApi.php
Remove extraneous ID parameter from Mastodon Blocks Listing API
[friendica.git] / src / Module / BaseApi.php
index 29ca755e05f949522189a5ee91111de259748dcd..6a41198473b2cb99225761dfb0997728383e249b 100644 (file)
@@ -180,6 +180,17 @@ class BaseApi extends BaseModule
                }
        }
 
+       /**
+        * Check if the app is known to support quoted posts
+        *
+        * @return bool
+        */
+       public static function appSupportsQuotes(): bool
+       {
+               $token = self::getCurrentApplication();
+               return (!empty($token['name']) && in_array($token['name'], ['Fedilab']));
+       }
+
        /**
         * Get current application token
         *