Implement upload from URL and enhanced reels interface

Co-authored-by: mroxso <24775431+mroxso@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-25 17:40:50 +00:00
parent d43326944f
commit fc1d5532a8
4 changed files with 639 additions and 70 deletions

View File

@@ -2,6 +2,11 @@ import { Event as NostrEvent, finalizeEvent} from "nostr-tools";
import { hexToBytes } from "@noble/hashes/utils"
import { signEventWithBunker } from "./bunkerUtils";
// Simple blacklist for pubkeys (can be expanded later)
export const blacklistPubkeys = new Set<string>([
// Add any blacklisted pubkeys here if needed
]);
// Check if the event has nsfw or sexy tags
export function hasNsfwContent(tags: string[][]): boolean {
return tags.some(tag =>