fixed notifications only getting older notifs instead of newer ones
This commit is contained in:
parent
048d158209
commit
08cd43bd7d
|
@ -148,15 +148,15 @@ export async function getStreamingHealth(host) {
|
||||||
* GET /api/v1/notifications
|
* GET /api/v1/notifications
|
||||||
* @param {string} host - The domain of the target server.
|
* @param {string} host - The domain of the target server.
|
||||||
* @param {string} token - The application token.
|
* @param {string} token - The application token.
|
||||||
* @param {string} max_id - If provided, only shows notifications after this ID.
|
* @param {string} min_id - If provided, only shows notifications after this ID.
|
||||||
* @param {string} limit - The maximum number of notifications to retrieve (default 40).
|
* @param {string} limit - The maximum number of notifications to retrieve (default 40).
|
||||||
* @param {string} types - A list of notification types to filter to.
|
* @param {string} types - A list of notification types to filter to.
|
||||||
*/
|
*/
|
||||||
export async function getNotifications(host, token, max_id, limit, types) {
|
export async function getNotifications(host, token, min_id, limit, types) {
|
||||||
let url = `https://${host}/api/v1/notifications`;
|
let url = `https://${host}/api/v1/notifications`;
|
||||||
|
|
||||||
let params = new URLSearchParams();
|
let params = new URLSearchParams();
|
||||||
if (max_id) params.append("max_id", max_id);
|
if (min_id) params.append("min_id", min_id);
|
||||||
if (limit) params.append("limit", limit);
|
if (limit) params.append("limit", limit);
|
||||||
if (types) params.append("types", types.join(','));
|
if (types) params.append("types", types.join(','));
|
||||||
const params_string = params.toString();
|
const params_string = params.toString();
|
||||||
|
|
Loading…
Reference in a new issue