Don't log error when a friend's avatar has been deleted
parent
e75e22fb10
commit
a511fccdc2
|
@ -2087,10 +2087,7 @@ define([
|
|||
var cryptKey = Hash.encodeBase64(secret.keys && secret.keys.cryptKey);
|
||||
var src = origin + Hash.getBlobPathFromHex(hexFileName);
|
||||
common.getFileSize(hexFileName, function (e, data) {
|
||||
if (e || !data) {
|
||||
displayDefault();
|
||||
return void console.error(e || "404 avatar");
|
||||
}
|
||||
if (e || !data) { return void displayDefault(); }
|
||||
if (typeof data !== "number") { return void displayDefault(); }
|
||||
if (Util.bytesToMegabytes(data) > 0.5) { return void displayDefault(); }
|
||||
var $img = $('<media-tag>').appendTo($container);
|
||||
|
|
Loading…
Reference in New Issue