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
# collect downloaded books only for registered user and not for anonymous user
ifcurrent_user.is_authenticated:
ub.update_download(book_id, int(current_user.id))
My use case is running a public library-kind page (https://roolipelikirjasto.fi) with only anonymous users and I would like to use the Hot Books (Most Downloaded) category and overall see download statistics.
The text was updated successfully, but these errors were encountered:
Could it be possible to add a setting to enable download tracking for anonymous users?
Currently download tracking is only enabled for registered users:
calibre-web/cps/helper.py
Lines 1101 to 1103 in e603184
My use case is running a public library-kind page (https://roolipelikirjasto.fi) with only anonymous users and I would like to use the
Hot Books (Most Downloaded)
category and overall see download statistics.The text was updated successfully, but these errors were encountered: