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
FBReader is downloading the first EPUB format book from my feed. So it gets ORIGINAL_EPUB, instead of my edited EPUB. This is my quick work around. I would prefer a blacklist of formats in the feed.
This should put all ORIGINAL_* formats to the end of the list. Now ORIGINAL_EPUB won't display in the feed output before EPUB.
Data.php
public static function getDataByBook ($book) {
$out = array ();
$result = parent::getDb ()->prepare('select id, format, name
from data where book = ? order by id DESC');
$result->execute (array ($book->id));
The text was updated successfully, but these errors were encountered:
FBReader is downloading the first EPUB format book from my feed. So it gets ORIGINAL_EPUB, instead of my edited EPUB. This is my quick work around. I would prefer a blacklist of formats in the feed.
This should put all ORIGINAL_* formats to the end of the list. Now ORIGINAL_EPUB won't display in the feed output before EPUB.
Data.php
The text was updated successfully, but these errors were encountered: