Apply suggestions
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
bdafe063d8
commit
154f91c6c1
|
@ -68,7 +68,7 @@ Extensions to the [Mastodon Status Entities](https://docs.joinmastodon.org/entit
|
||||||
* `delivery_queue_done`: Total number of remote servers that have successfully been federated to so far.
|
* `delivery_queue_done`: Total number of remote servers that have successfully been federated to so far.
|
||||||
* `delivery_queue_failed`: Total number of remote servers that have we failed to federate to so far.
|
* `delivery_queue_failed`: Total number of remote servers that have we failed to federate to so far.
|
||||||
* `dislikes_count`: The number of dislikes that a status has accumulated according to the server.
|
* `dislikes_count`: The number of dislikes that a status has accumulated according to the server.
|
||||||
* `disliked`: Whethere the user disliked the status.
|
* `disliked`: Whether the API user disliked the status.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
```json
|
```json
|
||||||
|
|
|
@ -177,7 +177,7 @@ class Status extends BaseFactory
|
||||||
'vid' => Verb::getID(Activity::LIKE),
|
'vid' => Verb::getID(Activity::LIKE),
|
||||||
'deleted' => false
|
'deleted' => false
|
||||||
]);
|
]);
|
||||||
$origin_dislike = ($count_like == 0) ? false : Post::exists([
|
$origin_dislike = ($count_dislike == 0) ? false : Post::exists([
|
||||||
'thr-parent-id' => $uriId,
|
'thr-parent-id' => $uriId,
|
||||||
'uid' => $uid,
|
'uid' => $uid,
|
||||||
'origin' => true,
|
'origin' => true,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user