Update 0BDFDB.plugin.js
This commit is contained in:
parent
e66cbfd5df
commit
b7b527495f
|
@ -2,7 +2,7 @@
|
||||||
* @name BDFDB
|
* @name BDFDB
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 2.7.6
|
* @version 2.7.7
|
||||||
* @description Required Library for DevilBro's Plugins
|
* @description Required Library for DevilBro's Plugins
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -2844,7 +2844,7 @@ module.exports = (_ => {
|
||||||
depth++;
|
depth++;
|
||||||
let result = undefined;
|
let result = undefined;
|
||||||
if (instance && !Node.prototype.isPrototypeOf(instance) && !BDFDB.ReactUtils.getInstance(instance) && depth < maxDepth && performance.now() - start < maxTime) {
|
if (instance && !Node.prototype.isPrototypeOf(instance) && !BDFDB.ReactUtils.getInstance(instance) && depth < maxDepth && performance.now() - start < maxTime) {
|
||||||
let keys = Object.getOwnPropertyNames(instance);
|
let keys = Object.keys(instance);
|
||||||
for (let i = 0; result === undefined && i < keys.length; i++) {
|
for (let i = 0; result === undefined && i < keys.length; i++) {
|
||||||
let key = keys[i];
|
let key = keys[i];
|
||||||
if (key && !blacklist[key]) {
|
if (key && !blacklist[key]) {
|
||||||
|
|
Loading…
Reference in New Issue