Skip to content

Commit

Permalink
Switch SDPlugin to use IPv4 by default
Browse files Browse the repository at this point in the history
- Working around a bug in EmbedIO where `localhost` doesn't bind properly.
  • Loading branch information
KazWolfe committed Apr 15, 2023
1 parent b1667fd commit b25df61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SDPlugin/src/link/ffxivplugin/FFXIVPluginLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class FFXIVPluginLink {
static eventManager: EventEmitter = new EventEmitter();

// settings
public hostname: string = "localhost";
public hostname: string = "127.0.0.1";
public port: number = 37984;
public isGameAlive: boolean = false;
public apiKey: string = "";
Expand Down

0 comments on commit b25df61

Please sign in to comment.