Compare commits
2 Commits
b1a3d2685c
...
0e2fa5f81a
Author | SHA1 | Date | |
---|---|---|---|
0e2fa5f81a | |||
7478741ba2 |
@ -152,6 +152,15 @@ public class DisMediaRP : IDisposable
|
|||||||
string? shuffle = (playbackInfo.IsShuffleActive ?? false) ? "\ud83d\udd00" : null;
|
string? shuffle = (playbackInfo.IsShuffleActive ?? false) ? "\ud83d\udd00" : null;
|
||||||
|
|
||||||
this._currentStatus.State = string.Join(' ', repeatMode, shuffle, $"{timelineProperties.Position:hh\\:mm\\:ss}/{timelineProperties.EndTime:hh\\:mm\\:ss}");
|
this._currentStatus.State = string.Join(' ', repeatMode, shuffle, $"{timelineProperties.Position:hh\\:mm\\:ss}/{timelineProperties.EndTime:hh\\:mm\\:ss}");
|
||||||
|
|
||||||
|
if (mediaSession.ControlSession.GetPlaybackInfo().PlaybackStatus is
|
||||||
|
GlobalSystemMediaTransportControlsSessionPlaybackStatus.Playing)
|
||||||
|
this._currentStatus.Timestamps = new Timestamps()
|
||||||
|
{
|
||||||
|
End = DateTime.UtcNow.Add(timelineProperties.EndTime - timelineProperties.Position)
|
||||||
|
};
|
||||||
|
else
|
||||||
|
this._currentStatus.Timestamps = new Timestamps();
|
||||||
|
|
||||||
this._discordRpcClient.SetPresence(this._currentStatus);
|
this._discordRpcClient.SetPresence(this._currentStatus);
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@ else
|
|||||||
throw new ArgumentNullException(nameof(discordKey));
|
throw new ArgumentNullException(nameof(discordKey));
|
||||||
|
|
||||||
int imageKeyIndex = Array.IndexOf(args, "-i");
|
int imageKeyIndex = Array.IndexOf(args, "-i");
|
||||||
string? imageKey = null;
|
string imageKey = "cat";
|
||||||
if(imageKeyIndex > -1)
|
if(imageKeyIndex > -1)
|
||||||
if (imageKeyIndex + 1 < args.Length)
|
if (imageKeyIndex + 1 < args.Length)
|
||||||
imageKey = args[imageKeyIndex + 1];
|
imageKey = args[imageKeyIndex + 1];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user