diff --git a/services/botcommands/data.ts b/services/botcommands/data.ts index 0891347..8251e72 100644 --- a/services/botcommands/data.ts +++ b/services/botcommands/data.ts @@ -8,7 +8,7 @@ export const dataDirCommand = { async execute(interaction: APIInteraction, api: API) { await api.interactions.reply(interaction.id, interaction.token, { content: - 'You can find the default data directory locations at https://rotki.readthedocs.io/en/stable/usage_guide.html#rotki-data-directory', + 'You can find the default data directory locations at https://docs.rotki.com/usage-guides/data-directory.html#rotki-data-directory', }); }, }; diff --git a/services/botcommands/logs.ts b/services/botcommands/logs.ts index e9cf292..020c158 100644 --- a/services/botcommands/logs.ts +++ b/services/botcommands/logs.ts @@ -8,7 +8,7 @@ export const logsCommand = { async execute(interaction: APIInteraction, api: API) { await api.interactions.reply(interaction.id, interaction.token, { content: - 'You can find the default log file locations at https://rotki.readthedocs.io/en/stable/contribute.html#id2 ', + 'You can find the default log file locations at https://docs.rotki.com/contribution-guides/#run-rotki-in-debug-mode', }); }, };