Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polyglot Webhook fix #73

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions tabbed-chatlog.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,9 @@ Hooks.on("preCreateChatMessage", (chatMessage, content) => {
if (!chatMessage.data.whisper?.length) {
let message = chatMessage.data.content;
if (game.modules.get("polyglot")?.active) {
const LanguageProvider = polyglot.polyglot.LanguageProvider;
let lang = chatMessage.data.flags.polyglot.language
if (lang != LanguageProvider.defaultLanguage) {
message = LanguageProvider.languages[lang] + ": ||" + chatMessage.data.content + "||";
const lang = chatMessage.flags.polyglot.language;
if (lang !== game.polyglot.defaultLanguage) {
message = game.polyglot.languages[lang].label + ": ||" + message + "||";
}
}
sendToDiscord(webhook, {
Expand All @@ -342,10 +341,9 @@ Hooks.on("preCreateChatMessage", (chatMessage, content) => {
if (!chatMessage.data.whisper?.length) {
let message = chatMessage.data.content;
if (game.modules.get("polyglot")?.active) {
let lang = chatMessage.data.flags.polyglot.language
const LanguageProvider = polyglot.polyglot.LanguageProvider;
if (lang != LanguageProvider.defaultLanguage) {
message = LanguageProvider.languages[lang] + ": ||" + chatMessage.data.content + "||";
const lang = chatMessage.flags.polyglot.language;
if (lang !== game.polyglot.defaultLanguage) {
message = game.polyglot.languages[lang].label + ": ||" + message + "||";
}
}
sendToDiscord(webhook, {
Expand Down