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