|
4 | 4 | import org.telegram.telegrambots.meta.api.objects.replykeyboard.ReplyKeyboardMarkup; |
5 | 5 | import org.telegram.telegrambots.meta.api.objects.replykeyboard.buttons.KeyboardButton; |
6 | 6 | import org.telegram.telegrambots.meta.api.objects.replykeyboard.buttons.KeyboardRow; |
7 | | -import ru.untitled_devs.bot.shared.localisation.ButtonKey; |
8 | 7 | import ru.untitled_devs.bot.shared.localisation.BtnLocService; |
| 8 | +import ru.untitled_devs.bot.shared.localisation.ButtonKey; |
9 | 9 | import ru.untitled_devs.bot.shared.localisation.MessageKey; |
10 | 10 | import ru.untitled_devs.bot.shared.localisation.MsgLocService; |
11 | 11 | import ru.untitled_devs.core.client.BotClient; |
@@ -83,13 +83,13 @@ else if (text.equals(viewLikesButton)) |
83 | 83 | } |
84 | 84 |
|
85 | 85 | private void openMyProfileScene(long chatId, FSMContext ctx) { |
86 | | - sceneManager.enterScene("myProfile", chatId, ctx); |
| 86 | + sceneManager.enterScene(chatId, "myProfile", ctx); |
87 | 87 | } |
88 | 88 | private void openViewProfilesScene(long chatId, FSMContext ctx) { |
89 | | - sceneManager.enterScene("viewProfiles", chatId, ctx); |
| 89 | + sceneManager.enterScene(chatId, "viewProfiles", ctx); |
90 | 90 | } |
91 | 91 | private void openViewLikesScene(long chatId, FSMContext ctx) { |
92 | | - sceneManager.enterScene("viewLikes", chatId, ctx); |
| 92 | + sceneManager.enterScene(chatId, "viewLikes", ctx); |
93 | 93 | } |
94 | 94 |
|
95 | 95 | } |
0 commit comments