Browse Source

[Web] oAuth: Fix content type in profile reply, thanks to @this-user - fixes #3716

andryyy 5 years ago
parent
commit
7d48831789
1 changed files with 1 additions and 0 deletions
  1. 1 0
      data/web/oauth/profile.php

+ 1 - 0
data/web/oauth/profile.php

@@ -11,6 +11,7 @@ $stmt->execute(array(':username' => $token['user_id']));
 $mailbox = $stmt->fetch(PDO::FETCH_ASSOC);
 if (!empty($mailbox)) {
   if ($token['scope'] == 'profile') {
+    header('Content-Type: application/json');
     echo json_encode(array(
       'success' => true,
       'username' => $token['user_id'],