mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Require a rageshake description in mxSendRageshake
This commit is contained in:
parent
bba167c433
commit
79b519be72
1 changed files with 4 additions and 0 deletions
|
@ -50,6 +50,10 @@ initRageshake();
|
|||
|
||||
global.mxSendRageshake = function(text, withLogs) {
|
||||
if (withLogs === undefined) withLogs = true;
|
||||
if (!text || !text.trim()) {
|
||||
console.error("Cannot send a rageshake without a message - please tell us what went wrong");
|
||||
return;
|
||||
}
|
||||
require(['matrix-react-sdk/lib/rageshake/submit-rageshake'], (s) => {
|
||||
s(SdkConfig.get().bug_report_endpoint_url, {
|
||||
userText: text,
|
||||
|
|
Loading…
Reference in a new issue