1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2024-10-17 17:42:51 +02:00

Compare commits

..

No commits in common. "845ac1b0fa076502cb864581a43678aa9f76f2c6" and "8f1c91b2cc7f268415d37d055cf73aa2ccf86c63" have entirely different histories.

3 changed files with 6 additions and 21 deletions

View File

@ -110,20 +110,16 @@ class DISCORD {
const messages = [];
for (const ele of this.getMessageElements()) {
try {
const props = this.getMessageElementProps(ele);
if (props != null) {
messages.push(props.message);
}
} catch (e) {
console.error("[DHT] Error extracing message data, skipping it.", e, ele, DOM.tryGetReactProps(ele));
const props = this.getMessageElementProps(ele);
if (props != null) {
messages.push(props.message);
}
}
return messages;
} catch (e) {
console.error("[DHT] Error retrieving messages.", e);
console.error(e);
return [];
}
}

View File

@ -71,15 +71,4 @@ class DOM {
key = keys.find(key => key.startsWith("__reactProps$"));
return key ? ele[key] : null;
}
/**
* Returns internal React state object of an element, or null if the retrieval throws.
*/
static tryGetReactProps(ele) {
try {
return this.getReactProps(ele);
} catch (e) {
return null;
}
}
}

View File

@ -7,6 +7,6 @@ using DHT.Utils;
namespace DHT.Utils {
static class Version {
public const string Tag = "36.2.0.0";
public const string Tag = "36.1.0.0";
}
}