We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20a2b82 commit 408030aCopy full SHA for 408030a
src/lib/rpc.ts
@@ -2,6 +2,7 @@ import * as RPC from 'discord-rpc';
2
import fetchCurrentSong from './mcat';
3
import * as moment from 'moment';
4
import db from './db';
5
+import { log } from 'console';
6
7
let client = new RPC.Client({
8
transport: 'ipc',
@@ -115,7 +116,9 @@ async function handleCurrentSong(input: CurrentlyPlaying) {
115
116
}`,
117
state: `from ${current.ReleaseTitle}`,
118
largeImageKey: getImageURL(current.CatalogId),
- largeImageText: `mcat-discord-rpc`,
119
+ largeImageText: `${current.CatalogId}`,
120
+ smallImageKey: 'mcat',
121
+ smallImageText: 'mcat-discord-rpc',
122
buttons: [
123
{
124
label: 'Play',
0 commit comments