Browse Source

Fixes for bugs uncovered during client testing

microsub
J. King 6 years ago
parent
commit
999f255203
  1. 2
      dist/nginx.conf
  2. 4
      lib/REST/TinyTinyRSS/API.php

2
dist/nginx.conf

@ -45,6 +45,6 @@ server {
# Tiny Tiny RSS special-feed icons
location /tt-rss/images/ {
root /usr/share/arsse/www;
try_files $uri;
try_files $uri =404;
}
}

4
lib/REST/TinyTinyRSS/API.php

@ -1188,7 +1188,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler {
'post_id' => $article['id'],
]] : [], // TODO: We need to support multiple enclosures
'score' => 0, // score is not implemented as it is not modifiable from the TTRSS API
'note' => strlen($article['note']) ? $article['note'] : null,
'note' => strlen((string) $article['note']) ? $article['note'] : null,
'lang' => "", // FIXME: picoFeed should be able to retrieve this information
'content' => $article['content'],
];
@ -1262,7 +1262,7 @@ class API extends \JKingWeb\Arsse\REST\AbstractHandler {
'feed_id' => $article['subscription'],
'feed_title' => $article['subscription_title'],
'score' => 0, // score is not implemented as it is not modifiable from the TTRSS API
'note' => strlen($article['note']) ? $article['note'] : null,
'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']),
'comments_count' => 0,

Loading…
Cancel
Save