mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 14:42:44 +01:00
Compare commits
2 Commits
8f1c91b2cc
...
845ac1b0fa
Author | SHA1 | Date | |
---|---|---|---|
845ac1b0fa | |||
1bead42a0e |
@ -110,16 +110,20 @@ class DISCORD {
|
|||||||
const messages = [];
|
const messages = [];
|
||||||
|
|
||||||
for (const ele of this.getMessageElements()) {
|
for (const ele of this.getMessageElements()) {
|
||||||
|
try {
|
||||||
const props = this.getMessageElementProps(ele);
|
const props = this.getMessageElementProps(ele);
|
||||||
|
|
||||||
if (props != null) {
|
if (props != null) {
|
||||||
messages.push(props.message);
|
messages.push(props.message);
|
||||||
}
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error("[DHT] Error extracing message data, skipping it.", e, ele, DOM.tryGetReactProps(ele));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return messages;
|
return messages;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error("[DHT] Error retrieving messages.", e);
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -71,4 +71,15 @@ class DOM {
|
|||||||
key = keys.find(key => key.startsWith("__reactProps$"));
|
key = keys.find(key => key.startsWith("__reactProps$"));
|
||||||
return key ? ele[key] : null;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,6 @@ using DHT.Utils;
|
|||||||
|
|
||||||
namespace DHT.Utils {
|
namespace DHT.Utils {
|
||||||
static class Version {
|
static class Version {
|
||||||
public const string Tag = "36.1.0.0";
|
public const string Tag = "36.2.0.0";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user