From de0589d9cf7c32e83b493627fc66cb538fb20f3c Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sat, 17 Dec 2016 15:35:21 -0800 Subject: [PATCH] pass q=config in initial micropub config query fixes #54 --- controllers/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/auth.php b/controllers/auth.php index c4efb1d..e2242de 100644 --- a/controllers/auth.php +++ b/controllers/auth.php @@ -212,7 +212,7 @@ $app->get('/auth/callback', function() use($app) { // Make a request to the micropub endpoint to discover the syndication targets and media endpoint if any. // Errors are silently ignored here. The user will be able to retry from the new post interface and get feedback. - get_micropub_config($user); + get_micropub_config($user, ['q'=>'config']); } unset($_SESSION['auth_state']);