1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 18:32:29 +01:00

Merge branch 'slowcord' of github.com:MaddyUnderStars/fosscord-server into slowcord

This commit is contained in:
Madeline 2022-09-07 15:31:40 +10:00
commit 9931698367
3 changed files with 12 additions and 10 deletions

View File

@ -14,5 +14,5 @@
</a>
</p>
Branch that [slowcord.maddy.k.vu](https://slowcord.maddy.k.vu) runs.
Branch that [slowcord.understars.dev](https://slowcord.understars.dev) runs.
Generally up to date with master, also contains my fixes/etc that aren't yet merged.

View File

@ -38,17 +38,18 @@ export const ActivitySchema = {
},
$instance: Boolean,
$flags: String,
$id: String,
$sync_id: String,
$metadata: { // spotify
$context_url: String,
album_id: String,
artist_ids: [String],
},
$session_id: String,
},
],
$since: Number, // unix time (in milliseconds) of when the client went idle, or null if the client is not idle
$id: String,
$sync_id: String,
$metadata: { // spotify
$context_url: String,
album_id: String,
artist_ids: [String],
}
};
export interface ActivitySchema {

View File

@ -40,7 +40,8 @@ export interface Activity {
context_url?: string;
album_id: string;
artist_ids: string[];
}
};
session_id: string;
}
export enum ActivityType {