File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
packages/server/src/server/services/remoteConfigService Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ import { isEmpty } from "@server/helpers/utils";
22import { Server } from "@server" ;
33
44
5+ // This whole file was bascially cribbed from main.ts. I imagine the code should
6+ // be consolidated and extracted somwhere.
7+
8+
59function quickStrConvert ( val : string ) {
610 if ( val . toLowerCase ( ) === "true" ) return true ;
711 if ( val . toLowerCase ( ) === "false" ) return false ;
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ export class RemoteConfigService {
1414 socketPath : string ;
1515
1616 constructor ( ) {
17+ // not sure if this socketPath stuff belongs in fileSystem/index.ts
1718 const isDev = process . env . NODE_ENV !== "production" ;
1819 this . socketPath = app . getPath ( "userData" ) ;
1920 if ( isDev ) {
You can’t perform that action at this time.
0 commit comments