fix: Revert including platform for track dispay by default

This commit is contained in:
FoxxMD
2024-10-16 12:47:43 +00:00
parent b2efc34b80
commit b76edbf7de
+1 -1
View File
@@ -32,7 +32,7 @@ export interface ClientStatusData {
}
export type PlayObjectIncludeTypes = 'album' | 'time' | 'artist' | 'track' | 'timeFromNow' | 'trackId' | 'comment' | 'platform';
export const recentIncludes: PlayObjectIncludeTypes[] = ['time', 'timeFromNow', 'track', 'album', 'artist', 'comment', 'platform'];
export const recentIncludes: PlayObjectIncludeTypes[] = ['time', 'timeFromNow', 'track', 'album', 'artist', 'comment'];
export interface TrackStringOptions<T = string> {
include?: PlayObjectIncludeTypes[]