Compare commits
9 Commits
3286d7e6e2
...
6ac15333f8
Author | SHA1 | Date | |
---|---|---|---|
6ac15333f8 | |||
92fd74afa2 | |||
47a0284e81 | |||
b06e4532a1 | |||
8613ad1256 | |||
3c5c8cd610 | |||
54099caf87 | |||
a3195955cc | |||
3cca9f9606 |
@ -74,9 +74,9 @@ class Config(BaseBridgeConfig):
|
|||||||
copy("bridge.delivery_error_reports")
|
copy("bridge.delivery_error_reports")
|
||||||
copy("bridge.resend_bridge_info")
|
copy("bridge.resend_bridge_info")
|
||||||
copy("bridge.receive_stickers")
|
copy("bridge.receive_stickers")
|
||||||
|
copy("bridge.resend_bridge_info")
|
||||||
copy("bridge.use_sticker_events")
|
copy("bridge.use_sticker_events")
|
||||||
copy("bridge.emoji_scale_factor")
|
copy("bridge.emoji_scale_factor")
|
||||||
copy("bridge.command_prefix")
|
|
||||||
copy("bridge.user")
|
copy("bridge.user")
|
||||||
|
|
||||||
copy("puppeteer.connection.type")
|
copy("puppeteer.connection.type")
|
||||||
|
@ -865,7 +865,7 @@ class MautrixController {
|
|||||||
lowerBound, i-1)
|
lowerBound, i-1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Insert the given message to the proper inner array.
|
* Insert the given message to the proper inner array.
|
||||||
* In no inner array exists, insert a new one, preserving sort order.
|
* In no inner array exists, insert a new one, preserving sort order.
|
||||||
@ -1315,4 +1315,4 @@ new MutationObserver(() => {
|
|||||||
}).observe(mainApp, {
|
}).observe(mainApp, {
|
||||||
attributes: true,
|
attributes: true,
|
||||||
attributeFilter: ["class"],
|
attributeFilter: ["class"],
|
||||||
})
|
})
|
@ -126,6 +126,7 @@ export default class MessagesPuppeteer {
|
|||||||
}
|
}
|
||||||
this.log("Injecting content script")
|
this.log("Injecting content script")
|
||||||
await this.page.addScriptTag({ path: "./src/contentscript.js", type: "module" })
|
await this.page.addScriptTag({ path: "./src/contentscript.js", type: "module" })
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -183,7 +184,7 @@ export default class MessagesPuppeteer {
|
|||||||
|
|
||||||
await this.page.evaluate(
|
await this.page.evaluate(
|
||||||
element => window.__mautrixController.addPINAppearObserver(element), loginContentArea)
|
element => window.__mautrixController.addPINAppearObserver(element), loginContentArea)
|
||||||
|
|
||||||
this.log("Waiting for login response")
|
this.log("Waiting for login response")
|
||||||
let doneWaiting = false
|
let doneWaiting = false
|
||||||
let loginSuccess = false
|
let loginSuccess = false
|
||||||
|
Loading…
Reference in New Issue
Block a user