mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
デバッグ用コード入ってたの修正
This commit is contained in:
parent
9faff19b2a
commit
9030b376de
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ export default class extends Module {
|
|||
if (msg.text && msg.text.includes('って何')) {
|
||||
// msg.textのうち、「の意味は」の直前で、「@ai」よりも後の物を抽出
|
||||
const dic_prefix = "https://www.weblio.jp/content/";
|
||||
const raw_word = msg.text.split('って何')[0].split('@ai_dev')[1].trim();
|
||||
const raw_word = msg.text.split('って何')[0].split('@ai')[1].trim();
|
||||
// スペースがある場合は、半角スペースを除去
|
||||
const word = raw_word.replace(/\s/g, '');
|
||||
const url = dic_prefix + encodeURIComponent(word);
|
||||
|
|
Loading…
Reference in a new issue