From 215ec727df8ca4d23c189e575fe85819466f33f0 Mon Sep 17 00:00:00 2001 From: ax4 Date: Wed, 10 Jun 2020 11:27:27 +0800 Subject: [PATCH] fix: fix the broken URLs links to /bot-qr-code.png (#1994) given expired links to the picture file --- docs/index.md | 10 +++++----- src/user/contact-self.ts | 2 +- src/user/contact.ts | 2 +- src/user/message.ts | 2 +- src/user/room.ts | 2 +- src/wechaty.ts | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/index.md b/docs/index.md index d95ade3c..a2702207 100644 --- a/docs/index.md +++ b/docs/index.md @@ -359,7 +359,7 @@ await bot.say(contact) // 3. send Image to bot itself from remote url import { FileBox } from 'wechaty' -const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') +const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') await bot.say(fileBox) // 4. send Image to bot itself from local file @@ -483,7 +483,7 @@ const msg = await room.say('Hello world!') // only supported by puppet-padplus // 2. Send media file inside Room import { FileBox } from 'wechaty' -const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') +const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') const fileBox2 = FileBox.fromLocal('/tmp/text.txt') await room.say(fileBox1) const msg1 = await room.say(fileBox1) // only supported by puppet-padplus @@ -1019,7 +1019,7 @@ const msg = await contact.say('welcome to wechaty!') // only supported by puppet // 2. send media file to contact import { FileBox } from 'wechaty' -const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') +const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') const fileBox2 = FileBox.fromFile('/tmp/text.txt') await contact.say(fileBox1) const msg1 = await contact.say(fileBox1) // only supported by puppet-padplus @@ -1309,7 +1309,7 @@ bot.on('login', (user: ContactSelf) => { import { FileBox } from 'wechaty' bot.on('login', (user: ContactSelf) => { console.log(`user ${user} login`) - const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') await user.avatar(fileBox) console.log(`Change bot avatar successfully!`) }) @@ -1720,7 +1720,7 @@ bot // 1. send Image if (/^ding$/i.test(m.text())) { - const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') await msg.say(fileBox) const message = await msg.say(fileBox) // only supported by puppet-padplus } diff --git a/src/user/contact-self.ts b/src/user/contact-self.ts index 2b995db2..d11bc98a 100644 --- a/src/user/contact-self.ts +++ b/src/user/contact-self.ts @@ -73,7 +73,7 @@ export class ContactSelf extends Contact { * import { FileBox } from 'wechaty' * bot.on('login', (user: ContactSelf) => { * console.log(`user ${user} login`) - * const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + * const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') * await user.avatar(fileBox) * console.log(`Change bot avatar successfully!`) * }) diff --git a/src/user/contact.ts b/src/user/contact.ts index b9d0c10a..3c2b22f7 100644 --- a/src/user/contact.ts +++ b/src/user/contact.ts @@ -347,7 +347,7 @@ export class Contact extends Accessory implements Sayable { * // 2. send media file to contact * * import { FileBox } from 'wechaty' - * const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + * const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') * const fileBox2 = FileBox.fromFile('/tmp/text.txt') * await contact.say(fileBox1) * const msg1 = await contact.say(fileBox1) // only supported by puppet-padplus diff --git a/src/user/message.ts b/src/user/message.ts index 2f8999f5..3413429f 100644 --- a/src/user/message.ts +++ b/src/user/message.ts @@ -445,7 +445,7 @@ export class Message extends Accessory implements Sayable { * // 1. send Image * * if (/^ding$/i.test(m.text())) { - * const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + * const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') * await msg.say(fileBox) * const message = await msg.say(fileBox) // only supported by puppet-padplus * } diff --git a/src/user/room.ts b/src/user/room.ts index 22ce1e7d..3ade52ea 100644 --- a/src/user/room.ts +++ b/src/user/room.ts @@ -409,7 +409,7 @@ export class Room extends Accessory implements Sayable { * * // 2. Send media file inside Room * import { FileBox } from 'wechaty' - * const fileBox1 = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + * const fileBox1 = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') * const fileBox2 = FileBox.fromLocal('/tmp/text.txt') * await room.say(fileBox1) * const msg1 = await room.say(fileBox1) // only supported by puppet-padplus diff --git a/src/wechaty.ts b/src/wechaty.ts index 32cfb5cb..0dd2121f 100644 --- a/src/wechaty.ts +++ b/src/wechaty.ts @@ -1106,7 +1106,7 @@ export class Wechaty extends EventEmitter implements Sayable { * * // 3. send Image to bot itself from remote url * import { FileBox } from 'wechaty' - * const fileBox = FileBox.fromUrl('https://chatie.io/wechaty/images/bot-qr-code.png') + * const fileBox = FileBox.fromUrl('https://wechaty.github.io/wechaty/images/bot-qr-code.png') * await bot.say(fileBox) * * // 4. send Image to bot itself from local file -- GitLab