URL Error
This commit is contained in:
parent
9831369c9e
commit
c6a2fbfbe5
@ -97,7 +97,6 @@ public class Init {
|
|||||||
|
|
||||||
logger.debug("-----------------FIN INITIALISATION-----------------");
|
logger.debug("-----------------FIN INITIALISATION-----------------");
|
||||||
|
|
||||||
jda.getPresence().setGame(Game.of("Statut: Ok!"));
|
|
||||||
|
|
||||||
}
|
}
|
||||||
catch (LoginException | InterruptedException | RateLimitedException e)
|
catch (LoginException | InterruptedException | RateLimitedException e)
|
||||||
@ -110,8 +109,10 @@ public class Init {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void polish(){
|
static void polish(JDA jda){
|
||||||
CommandLoader.load();
|
CommandLoader.load();
|
||||||
ApiCommandLoader.load();
|
ApiCommandLoader.load();
|
||||||
|
jda.getPresence().setGame(Game.of("Statut: Ok!"));
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -86,7 +86,7 @@ public class MainBot {
|
|||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
Init.polish();
|
Init.polish(jda);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ public class Receiver extends AbstractPromptReceiver {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRedirectUri() throws IOException {
|
public String getRedirectUri() throws IOException {
|
||||||
return System.getenv("SITE_URL") + "/youtube/callback";
|
return System.getenv("SITE_URL") + "/youtube/callback/";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -18,6 +18,7 @@ public class YoutubeCallBack {
|
|||||||
if(!code.equals("")){
|
if(!code.equals("")){
|
||||||
Receiver.getInstance(null).setCode(code);
|
Receiver.getInstance(null).setCode(code);
|
||||||
}
|
}
|
||||||
|
|
||||||
return "youtubeCallBack";
|
return "youtubeCallBack";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user