make Analytics use new method for finding Platform name, now human friendly :D

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-05-29 19:52:00 +01:00
parent d484372c7f
commit 4c607091d4

View file

@ -75,7 +75,7 @@ class Analytics {
this._paq.push(['enableLinkTracking', true]); this._paq.push(['enableLinkTracking', true]);
const platform = PlatformPeg.get(); const platform = PlatformPeg.get();
this._setVisitVariable('App Platform', platform.constructor.name); this._setVisitVariable('App Platform', platform.getHumanReadableName());
platform.getAppVersion().then((version) => { platform.getAppVersion().then((version) => {
this._setVisitVariable('App Version', version); this._setVisitVariable('App Version', version);
}).catch(() => { }).catch(() => {