mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 08:16:06 -07:00
Remove media_type argument from item stats API call
This commit is contained in:
parent
3fc2368078
commit
cd59e1d4c4
1 changed files with 2 additions and 2 deletions
|
@ -931,7 +931,7 @@ DOCUMENTATION :: END
|
|||
$.ajax({
|
||||
url: 'item_watch_time_stats',
|
||||
async: true,
|
||||
data: { rating_key: "${data['rating_key']}", media_type: "${data['media_type']}" },
|
||||
data: { rating_key: "${data['rating_key']}" },
|
||||
complete: function(xhr, status) {
|
||||
$("#watch-time-stats").html(xhr.responseText);
|
||||
}
|
||||
|
@ -940,7 +940,7 @@ DOCUMENTATION :: END
|
|||
$.ajax({
|
||||
url: 'item_user_stats',
|
||||
async: true,
|
||||
data: { rating_key: "${data['rating_key']}", media_type: "${data['media_type']}" },
|
||||
data: { rating_key: "${data['rating_key']}" },
|
||||
complete: function(xhr, status) {
|
||||
$("#user-stats").html(xhr.responseText);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue