planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

commit b03b3ec100d7e544848d9a7af7e4fa0cd3368865
parent 911edfa02ea1712085dc285a4263d147ab8177a9
Author: St John Karp <stjohn@fuzzjunket.com>
Date:   Sun,  9 Sep 2018 21:09:03 -0700

Fix typo in Mastodon service configs

Fixed a typo preventing the creation of a new client app.

Diffstat:
Mconfig/services.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/services.php b/config/services.php @@ -41,6 +41,6 @@ return [ 'client_secret' => env('MASTODON_SECRET'), 'redirect' => env('MASTODON_REDIRECT'), //'read', 'write', 'follow' - 'scope' => ['read', 'write', 'follow'], + 'scopes' => ['read', 'write', 'follow'], ], ];