You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An uncaught Exception was encountered
Type: Tumblr\API\RequestException
Message: Bad Request (8001 - Post cannot be empty.)
Filename: /tumblr/lib/Tumblr/API/Client.php
Line Number: 427
throw new RequestException($response);
In my case solved this issue replace this line with code - try { throw new RequestException($response); } catch (\Exception $e) { return ['code' => $e->getCode(), 'msg' => $e->getMessage()]; }
The text was updated successfully, but these errors were encountered:
An uncaught Exception was encountered
Type: Tumblr\API\RequestException
Message: Bad Request (8001 - Post cannot be empty.)
Filename: /tumblr/lib/Tumblr/API/Client.php
Line Number: 427
throw new RequestException($response);
In my case solved this issue replace this line with code -
try { throw new RequestException($response); } catch (\Exception $e) { return ['code' => $e->getCode(), 'msg' => $e->getMessage()]; }
The text was updated successfully, but these errors were encountered: