Add version and user agent to bug report

This commit is contained in:
Kegan Dougal 2017-01-19 17:40:21 +00:00
parent 3996d23b19
commit beba4d2ae3

View File

@ -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) => {