diff --git a/adapters/satori/src/ws.ts b/adapters/satori/src/ws.ts index 2bcbc347..480a43f8 100644 --- a/adapters/satori/src/ws.ts +++ b/adapters/satori/src/ws.ts @@ -58,7 +58,12 @@ export class SatoriAdapter extends Adapter.WsClient bot = new SatoriBot(this.ctx, login) this.bots.push(bot) bot.adapter = this - bot.http = this.http + bot.http = this.http.extend({ + headers: { + 'X-Platform': platform, + 'X-Self-ID': selfId, + }, + }) bot.status = login.status }