http
This commit is contained in:
parent
7ed6f576ca
commit
2aa8cc351a
|
|
@ -639,11 +639,11 @@
|
|||
};
|
||||
|
||||
context.JK.resolveAvatarUrl = function (photo_url) {
|
||||
return photo_url ? photo_url : "/assets/shared/avatar_generic.png";
|
||||
return photo_url ? photo_url.replace('https://', 'http://') : "/assets/shared/avatar_generic.png";
|
||||
};
|
||||
|
||||
context.JK.resolveBandAvatarUrl = function (photo_url) {
|
||||
return photo_url ? photo_url : "/assets/shared/avatar_generic_band.png";
|
||||
return photo_url ? photo_url.replace('https://', 'http://') : "/assets/shared/avatar_generic_band.png";
|
||||
};
|
||||
|
||||
context.JK.getInstrumentIconMap24 = function () {
|
||||
|
|
|
|||
Loading…
Reference in New Issue