Skip to content

Commit f9fceb5

Browse files
authoredMar 25, 2025
LB-1766: Fix Internal Server Error (500) when accessing listening history
In user.py, Timezone isnt being added to the datetime object (making it offset-naive) which is later sent to timescale_listenstore, where its getting compared with another datetime object with timezone i.e min_user_ts. This is leading to ambigous behaviour for users with less amount of listens. Add UTC timezone to both from_ts and to_ts (similar to how we do it in api.py ) .
1 parent 1d4cba3 commit f9fceb5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎listenbrainz/webserver/views/test/test_user.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22
import logging
33
import time
4-
from datetime import datetime
4+
from datetime import datetime, timezone
55
from unittest import mock
66

77
import orjson
@@ -162,21 +162,21 @@ def test_ts_filters(self, timescale):
162162
# max_ts query param -> to_ts timescale param
163163
self.client.post(self.custom_url_for('user.profile', user_name='iliekcomputers'),
164164
query_string={'max_ts': 1520946000})
165-
req_call = mock.call(user, limit=25, to_ts=datetime.utcfromtimestamp(1520946000))
165+
req_call = mock.call(user, limit=25, to_ts=datetime.fromtimestamp(1520946000, timezone.utc))
166166
timescale.assert_has_calls([req_call])
167167
timescale.reset_mock()
168168

169169
# min_ts query param -> from_ts timescale param
170170
self.client.post(self.custom_url_for('user.profile', user_name='iliekcomputers'),
171171
query_string={'min_ts': 1520941000})
172-
req_call = mock.call(user, limit=25, from_ts=datetime.utcfromtimestamp(1520941000))
172+
req_call = mock.call(user, limit=25, from_ts=datetime.fromtimestamp(1520941000, timezone.utc))
173173
timescale.assert_has_calls([req_call])
174174
timescale.reset_mock()
175175

176176
# If max_ts and min_ts set, only max_ts is used
177177
self.client.post(self.custom_url_for('user.profile', user_name='iliekcomputers'),
178178
query_string={'min_ts': 1520941000, 'max_ts': 1520946000})
179-
req_call = mock.call(user, limit=25, to_ts=datetime.utcfromtimestamp(1520946000))
179+
req_call = mock.call(user, limit=25, to_ts=datetime.fromtimestamp(1520946000, timezone.utc))
180180
timescale.assert_has_calls([req_call])
181181

182182
@mock.patch('listenbrainz.webserver.timescale_connection._ts.fetch_listens')

‎listenbrainz/webserver/views/user.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from datetime import datetime
1+
from datetime import datetime, timezone
22
from math import ceil
33
from collections import defaultdict
44

@@ -79,9 +79,9 @@ def profile(user_name):
7979

8080
args = {}
8181
if max_ts:
82-
args['to_ts'] = datetime.utcfromtimestamp(max_ts)
82+
args['to_ts'] = datetime.fromtimestamp(max_ts, timezone.utc)
8383
elif min_ts:
84-
args['from_ts'] = datetime.utcfromtimestamp(min_ts)
84+
args['from_ts'] = datetime.fromtimestamp(min_ts, timezone.utc)
8585
data, min_ts_per_user, max_ts_per_user = ts_conn.fetch_listens(
8686
user.to_dict(), limit=LISTENS_PER_PAGE, **args)
8787
min_ts_per_user = int(min_ts_per_user.timestamp())

0 commit comments

Comments
 (0)