File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -201,8 +201,8 @@ func (f *ficsitCLI) GetNextRemoteLauncherName() string {
201201 for _ , install := range f .GetRemoteInstallations () {
202202 metadata , ok := f .installationMetadata .Load (install )
203203 if ok && metadata .Info != nil {
204- if strings .HasPrefix (metadata .Info .Launcher , "Remote " ) {
205- num , err := strconv .Atoi (strings .TrimPrefix (metadata .Info .Launcher , "Remote " ))
204+ if strings .HasPrefix (metadata .Info .Launcher , "Server " ) {
205+ num , err := strconv .Atoi (strings .TrimPrefix (metadata .Info .Launcher , "Server " ))
206206 if err == nil {
207207 existingNumbers [num ] = true
208208 }
@@ -211,7 +211,7 @@ func (f *ficsitCLI) GetNextRemoteLauncherName() string {
211211 }
212212 for i := 1 ; ; i ++ {
213213 if ! existingNumbers [i ] {
214- return "Remote " + strconv .Itoa (i )
214+ return "Server " + strconv .Itoa (i )
215215 }
216216 }
217217}
You can’t perform that action at this time.
0 commit comments