File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " heroic" ,
3
- "version" : " 2.18.0 " ,
3
+ "version" : " 2.18.1 " ,
4
4
"versionNames" : {
5
5
"stable" : " \" Waterfall Beard\" Jorul" ,
6
6
"beta" : " Caesar Clown"
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ export function startPlausible() {
94
94
gog : providersObject . gog || false ,
95
95
epic : providersObject . epic || false ,
96
96
amazon : providersObject . amazon || false ,
97
+ sideloaded : providersObject . sideloaded || false ,
97
98
providers : loggedInProviders . join ( ', ' ) ,
98
99
OS : process . platform ,
99
100
isFlatpak : isFlatpak ,
@@ -103,11 +104,13 @@ export function startPlausible() {
103
104
isSteamDeck : ! ! isSteamDeck
104
105
}
105
106
106
- logInfo ( 'Starting Plausible Analytics' , LogPrefix . Backend )
107
- logInfo ( `Shared Data: ${ JSON . stringify ( props ) } ` , LogPrefix . Backend )
108
- plausible . trackEvent ( 'App Loaded' , {
109
- props
110
- } )
107
+ if ( process . platform ) {
108
+ logInfo ( 'Starting Plausible Analytics' , LogPrefix . Backend )
109
+ logInfo ( `Shared Data: ${ JSON . stringify ( props ) } ` , LogPrefix . Backend )
110
+ plausible . trackEvent ( 'App Loaded' , {
111
+ props
112
+ } )
113
+ }
111
114
}
112
115
113
116
backendEvents . on ( 'settingChanged' , ( { key, newValue } ) => {
You can’t perform that action at this time.
0 commit comments