rep monitoring: expect that "accounts/verified" is not guaranteed to succeed

This commit is contained in:
keeri 2023-08-15 13:35:42 +00:00
commit f53e2ee8b1

View file

@ -54,6 +54,11 @@ export class NinjaService {
async recommendedRandomized(): Promise<any> {
const replist = await this.recommended();
if (replist == null) {
return [];
}
return this.randomizeByScore(replist);
}