MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / getFeedbackBody

Function getFeedbackBody

src/dialogs/rateBox.js:55–73  ·  view source on GitHub ↗

* Gets body for feedback email * @param {String} eol * @returns

(eol)

Source from the content-addressed store, hash-verified

53 * @returns
54 */
55function getFeedbackBody(eol) {
56 const buildInfo = window.BuildInfo || {};
57 const device = window.device || {};
58 return (
59 "Version: " +
60 `${buildInfo.version} (${buildInfo.versionCode})` +
61 eol +
62 "Device: " +
63 (device.model || "") +
64 eol +
65 "Manufacturer: " +
66 (device.manufacturer || "") +
67 eol +
68 "Android version: " +
69 device.version +
70 eol +
71 "Info: "
72 );
73}
74
75/**
76 *

Callers 1

onInteractFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected