web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit 881f77a51e30729f217edfffe7091c57c1f7be00
parent 28d1c188e11a87d744975010db5553621879cf38
Author: triesap <triesap@radroots.dev>
Date:   Tue, 18 Nov 2025 03:53:17 +0000

utils-nostr: integrate nostr geotagging utilities into listing event tag processing

Diffstat:
Dutils-nostr/README.md | 1-
Mutils-nostr/src/events/listing/tags.ts | 2+-
2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/utils-nostr/README.md b/utils-nostr/README.md @@ -1 +0,0 @@ -# nostr util diff --git a/utils-nostr/src/events/listing/tags.ts b/utils-nostr/src/events/listing/tags.ts @@ -1,5 +1,5 @@ import { RadrootsListingDiscount, RadrootsListingPrice, RadrootsListingQuantity, type RadrootsListing } from "@radroots/events-bindings"; -import ngeotags, { type InputData as NostrGeotagsInputData } from "nostr-geotags"; +import { ngeotags, type InputData as NostrGeotagsInputData } from "nostr-geotags"; import { NostrEventTag, NostrEventTagImage, NostrEventTagLocation, NostrEventTags } from "../../types/lib.js"; const tags_map = (tag: any[]) => tag.map(i => String(i).toLowerCase());