Replace 'BroadcastBeat' with 'Broadcast Beat' in all user-visible text (133 occurrences across 40+ files)

This commit is contained in:
broadcastbeat-rename
2026-05-16 00:32:13 +00:00
parent 959e3980ae
commit 0db3ea34e3
52 changed files with 133 additions and 133 deletions

View File

@@ -29,7 +29,7 @@ function stripHtml(html: string): string {
async function fetchWPPosts(page: number): Promise<{ posts: WPPost[]; totalPages: number }> {
const url = `${WP_BASE_URL}/posts?page=${page}&per_page=${PER_PAGE}&_embed=1&status=publish`;
const res = await fetch(url, {
headers: { 'User-Agent': 'BroadcastBeat-Importer/1.0' },
headers: { 'User-Agent': 'Broadcast Beat-Importer/1.0' },
next: { revalidate: 0 },
});
@@ -54,7 +54,7 @@ async function downloadAndStoreImage(
try {
// Fetch the image
const response = await fetch(imageUrl, {
headers: { 'User-Agent': 'BroadcastBeat-Importer/1.0' },
headers: { 'User-Agent': 'Broadcast Beat-Importer/1.0' },
signal: AbortSignal.timeout(15000),
});