summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--controllers/controllers.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/controllers.php b/controllers/controllers.php
index 1c3db83..4f150ce 100644
--- a/controllers/controllers.php
+++ b/controllers/controllers.php
@@ -437,7 +437,7 @@ $app->get('/reply/preview', function() use($app) {
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$data = @json_decode($response, true);
- if($data && $data['data']['type'] == 'entry') {
+ if($data && isset($data['data']) && $data['data']['type'] == 'entry') {
$entry = $data['data'];
// Create a nickname based on the author URL
if(array_key_exists('author', $entry) && $entry['author']['url']) {