update embed names

This commit is contained in:
Pas 2025-08-19 22:25:57 -06:00
parent c0d5fb797f
commit 15d597e2d0
5 changed files with 8 additions and 8 deletions

View file

@ -17,7 +17,7 @@ const headers = {
export function makeAnimetsuEmbed(id: string, rank: number = 100) {
return makeEmbed({
id: `animetsu-${id}`,
name: `Animetsu ${id.charAt(0).toUpperCase() + id.slice(1)}`,
name: `${id.charAt(0).toUpperCase() + id.slice(1)}`,
rank,
async scrape(ctx): Promise<EmbedOutput> {
const serverName = id as (typeof ANIMETSU_SERVERS)[number];

View file

@ -15,7 +15,7 @@ const headers = {
export const madplayBaseEmbed = makeEmbed({
id: 'madplay-base',
name: 'Flicky Base',
name: 'Base',
rank: 134,
async scrape(ctx): Promise<EmbedOutput> {
const query = JSON.parse(ctx.url);
@ -59,7 +59,7 @@ export const madplayBaseEmbed = makeEmbed({
export const madplayNsapiEmbed = makeEmbed({
id: 'madplay-nsapi',
name: 'Flicky Northstar',
name: 'Northstar',
rank: 133,
async scrape(ctx): Promise<EmbedOutput> {
const query = JSON.parse(ctx.url);
@ -103,7 +103,7 @@ export const madplayNsapiEmbed = makeEmbed({
export const madplayRoperEmbed = makeEmbed({
id: 'madplay-roper',
name: 'Flicky Roper',
name: 'Roper',
rank: 132,
async scrape(ctx): Promise<EmbedOutput> {
const query = JSON.parse(ctx.url);
@ -147,7 +147,7 @@ export const madplayRoperEmbed = makeEmbed({
export const madplayNsapiVidFastEmbed = makeEmbed({
id: 'madplay-vidfast',
name: 'Flicky Vidfast',
name: 'Vidfast',
rank: 131,
async scrape(ctx): Promise<EmbedOutput> {
const query = JSON.parse(ctx.url);

View file

@ -15,7 +15,7 @@ const headers = {
export function makeRivestreamEmbed(id: string, rank: number = 100) {
return makeEmbed({
id: `rivestream-${id}`,
name: `Rivestream ${id.charAt(0).toUpperCase() + id.slice(1)}`,
name: `${id.charAt(0).toUpperCase() + id.slice(1)}`,
rank,
async scrape(ctx): Promise<EmbedOutput> {
const query = JSON.parse(ctx.url);

View file

@ -56,7 +56,7 @@ export function makeVidifyEmbed(id: string, rank: number = 100) {
return makeEmbed({
id: `vidify-${id}`,
name: `Vidify ${id.charAt(0).toUpperCase() + id.slice(1)}`,
name: `${id.charAt(0).toUpperCase() + id.slice(1)}`,
rank,
async scrape(ctx): Promise<EmbedOutput> {
const query = JSON.parse(ctx.url);

View file

@ -15,7 +15,7 @@ const headers = {
export function makeZunimeEmbed(id: string, rank: number = 100) {
return makeEmbed({
id: `zunime-${id}`,
name: `Zunime ${id.charAt(0).toUpperCase() + id.slice(1)}`,
name: `${id.charAt(0).toUpperCase() + id.slice(1)}`,
rank,
async scrape(ctx): Promise<EmbedOutput> {
const serverName = id as (typeof ZUNIME_SERVERS)[number];