mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 14:42:44 +01:00
Compare commits
No commits in common. "845ac1b0fa076502cb864581a43678aa9f76f2c6" and "8f1c91b2cc7f268415d37d055cf73aa2ccf86c63" have entirely different histories.
845ac1b0fa
...
8f1c91b2cc
@ -110,20 +110,16 @@ 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("[DHT] Error retrieving messages.", e);
|
console.error(e);
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -71,15 +71,4 @@ 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.2.0.0";
|
public const string Tag = "36.1.0.0";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user