mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Minor fixes for correctness
This commit is contained in:
parent
458126416c
commit
8aca42c882
3 changed files with 3 additions and 2 deletions
|
@ -718,7 +718,7 @@ class V1 extends \JKingWeb\Arsse\REST\AbstractHandler {
|
|||
// otherwise we'd be deleting the entire tree
|
||||
$tr = Arsse::$db->begin();
|
||||
foreach (Arsse::$db->subscriptionList(Arsse::$user->id, null, false) as $sub) {
|
||||
Arsse::$db->subscriptionRemove(Arsse::$user->id, $sub['id']);
|
||||
Arsse::$db->subscriptionRemove(Arsse::$user->id, (int) $sub['id']);
|
||||
}
|
||||
$tr->commit();
|
||||
}
|
||||
|
|
|
@ -1357,7 +1357,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler {
|
|||
'score' => 0, // score is not implemented as it is not modifiable from the TTRSS API
|
||||
'note' => strlen((string) $article['note']) ? $article['note'] : null,
|
||||
'lang' => "", // FIXME: picoFeed should be able to retrieve this information
|
||||
'tags' => Arsse::$db->articleCategoriesGet(Arsse::$user->id, $article['id']),
|
||||
'tags' => Arsse::$db->articleCategoriesGet(Arsse::$user->id, (int) $article['id']),
|
||||
'comments_count' => 0,
|
||||
'comments_link' => "",
|
||||
'always_display_attachments' => false,
|
||||
|
|
|
@ -945,6 +945,7 @@ LONG_STRING;
|
|||
[['label_id' => -1042, 'caption' => ""], [$this->userId, 18, ['name' => ""]], new ExceptionInput("missing"), $this->respGood()],
|
||||
[['label_id' => -1042, 'caption' => " "], [$this->userId, 18, ['name' => " "]], new ExceptionInput("whitespace"), $this->respGood()],
|
||||
[['label_id' => -1042], [$this->userId, 18, ['name' => ""]], new ExceptionInput("missing"), $this->respGood()],
|
||||
[['label_id' => -1042], [$this->userId, 18, ['name' => ""]], new ExceptionInput("typeViolation"), $this->respErr("INCORRECT_USAGE")],
|
||||
[['label_id' => -1, 'caption' => "Ook"], null, null, $this->respErr("INCORRECT_USAGE")],
|
||||
[['caption' => "Ook"], null, null, $this->respErr("INCORRECT_USAGE")],
|
||||
[[], null, null, $this->respErr("INCORRECT_USAGE")],
|
||||
|
|
Loading…
Reference in a new issue