mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Add version and user agent to bug report
This commit is contained in:
parent
3996d23b19
commit
beba4d2ae3
@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import PlatformPeg from 'matrix-react-sdk/lib/PlatformPeg';
|
||||||
import request from "browser-request";
|
import request from "browser-request";
|
||||||
|
|
||||||
// This module contains all the code needed to log the console, persist it to disk and submit bug reports. Rationale is as follows:
|
// This module contains all the code needed to log the console, persist it to disk and submit bug reports. Rationale is as follows:
|
||||||
@ -356,6 +357,18 @@ module.exports = {
|
|||||||
if (!bugReportEndpoint) {
|
if (!bugReportEndpoint) {
|
||||||
throw new Error("No bug report endpoint has been set.");
|
throw new Error("No bug report endpoint has been set.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let version = "UNKNOWN";
|
||||||
|
try {
|
||||||
|
version = await PlatformPeg.get().getAppVersion();
|
||||||
|
}
|
||||||
|
catch (err) {} // PlatformPeg already logs this.
|
||||||
|
|
||||||
|
let userAgent = "UNKNOWN";
|
||||||
|
if (window.navigator && window.navigator.userAgent) {
|
||||||
|
userAgent = window.navigator.userAgent;
|
||||||
|
}
|
||||||
|
|
||||||
// If in incognito mode, store is null, but we still want bug report sending to work going off
|
// If in incognito mode, store is null, but we still want bug report sending to work going off
|
||||||
// the in-memory console logs.
|
// the in-memory console logs.
|
||||||
let logs = [];
|
let logs = [];
|
||||||
@ -376,6 +389,8 @@ module.exports = {
|
|||||||
body: {
|
body: {
|
||||||
logs: logs,
|
logs: logs,
|
||||||
text: userText || "User did not supply any additional text.",
|
text: userText || "User did not supply any additional text.",
|
||||||
|
version: version,
|
||||||
|
user_agent: userAgent,
|
||||||
},
|
},
|
||||||
json: true,
|
json: true,
|
||||||
}, (err, res) => {
|
}, (err, res) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user