galaxyoyo.com => ynerant.fr

This commit is contained in:
Yohann D'ANELLO 2019-12-03 01:57:56 +01:00
parent 358f554188
commit 1e186f1944
4 changed files with 4 additions and 4 deletions

View File

@ -268,7 +268,7 @@ public class Game {
@Override
public void run() {
try {
URL url = new URL("http://galaxyoyo.com/tarot/game.php");
URL url = new URL("http://ynerant.fr/tarot/game.php");
final HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", PreferenceManager.getDefaultSharedPreferences(MainActivity.INSTANCE).getString("token", null));

View File

@ -65,7 +65,7 @@ public class Player {
@Override
public void run() {
try {
URL url = new URL("http://galaxyoyo.com/tarot/player.php");
URL url = new URL("http://ynerant.fr/tarot/player.php");
final HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", PreferenceManager.getDefaultSharedPreferences(MainActivity.INSTANCE).getString("token", null));

View File

@ -63,7 +63,7 @@ public class HomeFragment extends Fragment {
public void run() {
try {
Looper.prepare();
URL url = new URL("http://galaxyoyo.com/tarot/check_token.php");
URL url = new URL("http://ynerant.fr/tarot/check_token.php");
final HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", token.getText().toString());

View File

@ -484,7 +484,7 @@ public class NewGameFragment extends Fragment {
Game g = getGame();
try {
URL url = new URL("https://galaxyoyo.com/tarot/game.php?add_game");
URL url = new URL("https://ynerant.fr/tarot/game.php?add_game");
HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", PreferenceManager.getDefaultSharedPreferences(MainActivity.INSTANCE).getString("token", null));