Fix BaseAvatar sometimes messing up and duplicating the url
This commit is contained in:
parent
f0ca8e152e
commit
75888fb7b6
1 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,8 @@ const calculateUrls = (url, urls) => {
|
||||||
_urls = urls || [];
|
_urls = urls || [];
|
||||||
|
|
||||||
if (url) {
|
if (url) {
|
||||||
_urls.unshift(url); // put in urls[0]
|
// copy urls and put url first
|
||||||
|
_urls = [url, ..._urls];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue