diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-05-20 08:09:32 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-05-20 08:09:32 -0700 |
commit | f255179c39211a159932ca3f8a2738b3c943f09d (patch) | |
tree | 367f3cdabff7b6c7367a5684325a948abece6982 /views/new-repost.php | |
parent | bc2ce00d55741de7c91d41dd3bc6e8e515c3f9e9 (diff) |
don't need to json.parse when the content type header is right
Diffstat (limited to 'views/new-repost.php')
-rw-r--r-- | views/new-repost.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/views/new-repost.php b/views/new-repost.php index a60b8ea..354083b 100644 --- a/views/new-repost.php +++ b/views/new-repost.php @@ -30,8 +30,7 @@ $(function(){ $.post("/repost", { url: $("#note_url").val() - }, function(data){ - var response = JSON.parse(data); + }, function(response){ if(response.location != false) { |