mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update translations
This commit is contained in:
parent
6f781f5a96
commit
668f8ba11f
22 changed files with 164 additions and 55 deletions
|
@ -1145,10 +1145,15 @@ $(document).on('pagebeforeshow', "#dashboardPage", DashboardPage.onPageShow)
|
|||
|
||||
limit = limit || parseInt(elem.getAttribute('data-activitylimit') || '7');
|
||||
|
||||
// Show last 24 hours
|
||||
var minDate = new Date();
|
||||
minDate.setTime(minDate.getTime() - 86400000);
|
||||
|
||||
ApiClient.getJSON(ApiClient.getUrl('System/ActivityLog/Entries', {
|
||||
|
||||
startIndex: startIndex,
|
||||
limit: limit
|
||||
limit: limit,
|
||||
minDate: minDate.toISOString()
|
||||
|
||||
})).done(function (result) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue