mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
Fixed two old URLs.
This commit is contained in:
parent
c7184a6055
commit
ba9d616a27
2 changed files with 2 additions and 2 deletions
|
@ -429,7 +429,7 @@ public class ConnectDialog extends MageDialog {
|
|||
BufferedReader in = null;
|
||||
try {
|
||||
|
||||
URL serverListURL = new URL(PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CONNECTION_URL_SERVER_LIST, "http://176.31.186.181/files/server-list.txt"));
|
||||
URL serverListURL = new URL(PreferencesDialog.getCachedValue(PreferencesDialog.KEY_CONNECTION_URL_SERVER_LIST, "http://xmage.de/files/server-list.txt"));
|
||||
|
||||
Connection.ProxyType configProxyType = Connection.ProxyType.valueByText(PreferencesDialog.getCachedValue(PreferencesDialog.KEY_PROXY_TYPE, "None"));
|
||||
Proxy p = null;
|
||||
|
|
|
@ -487,7 +487,7 @@ public class ConnectDialog extends JDialog {
|
|||
private void findPublicServerActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
|
||||
BufferedReader in = null;
|
||||
try {
|
||||
URL serverListURL = new URL("http://XMage.info/files/server-list.txt");
|
||||
URL serverListURL = new URL("http://XMage.de/files/server-list.txt");
|
||||
in = new BufferedReader(new InputStreamReader(serverListURL.openStream()));
|
||||
|
||||
List<String> servers = new ArrayList<>();
|
||||
|
|
Loading…
Reference in a new issue