Update StatusController

pull/1418/head
Daniel Supernault 2019-06-18 00:47:38 -06:00
rodzic 9f928ae570
commit 84e01f1132
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -259,7 +259,12 @@ class StatusController extends Controller
$count++;
SharePipeline::dispatch($share);
}
if($count >= 0) {
$status->reblogs_count = $count;
$status->save();
}
if ($request->ajax()) {
$response = ['code' => 200, 'msg' => 'Share saved', 'count' => $count];
} else {