mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added missing type: attr
type: attributes were accidentally omitted during the merge
This commit is contained in:
parent
e6e4b74d26
commit
d40a2d4ef2
2 changed files with 20 additions and 5 deletions
|
@ -23,7 +23,8 @@
|
|||
|
||||
return ApiClient.getUserImageUrl(user.Id, {
|
||||
width: 240,
|
||||
tag: user.PrimaryImageTag
|
||||
tag: user.PrimaryImageTag,
|
||||
type: "Primary"
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -73,7 +74,8 @@
|
|||
|
||||
var imgUrl = ApiClient.getUserImageUrl(user.Id, {
|
||||
width: 500,
|
||||
tag: user.PrimaryImageTag
|
||||
tag: user.PrimaryImageTag,
|
||||
type: "Primary"
|
||||
});
|
||||
|
||||
html += '<img src="' + imgUrl + '" />';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue