Remove some debug messages

This commit is contained in:
N-Pex 2025-06-19 11:23:26 +02:00
parent acdef62880
commit 76c04481bc
3 changed files with 1 additions and 8 deletions

View file

@ -20,7 +20,7 @@ export default {
},
errorCaptured(err, ignoredvm, ignoredinfo) {
this.err = err;
console.error("IGNORE", err, ignoredvm, ignoredinfo);
console.error("Render error", err, ignoredvm, ignoredinfo);
return false;
}
};

View file

@ -56,8 +56,6 @@ export default {
}
},
mounted() {
console.error("Mounted outgoing image, load thumbnail!");
const info = this.event.getContent().info;
// JPEGs use cover, PNG and GIF ect contain. This is because PNG and GIF are expected to
// be stickers and small emoji type things.

View file

@ -63,7 +63,6 @@ class Util {
}
getAttachment(matrixClient, useAuthedMedia, event, progressCallback, asBlob = false, abortController = undefined) {
console.error("GET ATTACHMENT FOR EVENT", event.getId());
return new Promise((resolve, reject) => {
const content = event.getContent();
var url = null;
@ -139,7 +138,6 @@ class Util {
}
async getThumbnail(matrixClient, useAuthedMedia, event, config, ignoredw, ignoredh) {
console.error("GET THUMB FOR EVENT", event.getId());
const content = event.getContent();
var url = null;
var mime = "image/png";
@ -374,7 +372,6 @@ class Util {
// Calculate sha256
let hash = await crypto.subtle.digest("SHA-256", encryptedBytes);
console.error("HASH GENERATED", Buffer.from(hash));
const jwk = {
kty: "oct",
@ -493,7 +490,6 @@ class Util {
if (thumbnailData) {
messageContent.thumbnail_info = thumbnailInfo;
if (useEncryption) {
console.error("Encrypt thumb thumb");
const [encryptedBytes, encryptedFile] = await this.encryptFileAndGenerateInfo(thumbnailData, file.type);
messageContent.info.thumbnail_file = encryptedFile;
thumbnailData = encryptedBytes;
@ -604,7 +600,6 @@ class Util {
// Have we changed our local view mode of this room?
const tags = room.tags;
if (tags && tags["ui_options"]) {
console.error("We have a tag!");
if (tags["ui_options"]["voice_mode"] === 1) {
return ROOM_TYPE_VOICE_MODE;
} else if (tags["ui_options"]["file_mode"] === 1) {