From 7d413b832103b9ec9290c76163a961e2c4238ae6 Mon Sep 17 00:00:00 2001 From: koalasat Date: Sat, 3 May 2025 16:34:49 +0200 Subject: [PATCH] Fix file --- .../{mn.federation_urls .txt => mn.federation_urls.txt} | 2 +- compose/strfry/sync.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) rename compose/strfry/{mn.federation_urls .txt => mn.federation_urls.txt} (96%) diff --git a/compose/strfry/mn.federation_urls .txt b/compose/strfry/mn.federation_urls.txt similarity index 96% rename from compose/strfry/mn.federation_urls .txt rename to compose/strfry/mn.federation_urls.txt index 64b1eaf..5cded99 100644 --- a/compose/strfry/mn.federation_urls .txt +++ b/compose/strfry/mn.federation_urls.txt @@ -1,4 +1,4 @@ ws://ngdk7ocdzmz5kzsysa3om6du7ycj2evxp2f2olfkyq37htx3gllwp2yd.onion/nostr ws://4t4jxmivv6uqej6xzx2jx3fxh75gtt65v3szjoqmc4ugdlhipzdat6yd.onion/nostr ws://mmhaqzuirth5rx7gl24d4773lknltjhik57k7ahec5iefktezv4b3uid.onion/nostr -ws://otmoonrndnrddqdlhu6b36heunmbyw3cgvadqo2oqeau3656wfv7fwad.onion/nostr +ws://otmoonrndnrddqdlhu6b36heunmbyw3cgvadqo2oqeau3656wfv7fwad.onion/nostr \ No newline at end of file diff --git a/compose/strfry/sync.sh b/compose/strfry/sync.sh index 377054b..ff9766d 100644 --- a/compose/strfry/sync.sh +++ b/compose/strfry/sync.sh @@ -1,14 +1,14 @@ #!/bin/sh -filters='{"kinds":[38383]}' +filters_external='{"kinds":[38383]}' while IFS= read -r line; do - /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters" --dir both + /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_external" --dir both done < /app/external_urls.txt -filters='{"kinds":[38383, 31986, 1059]}' +filters_federation='{"kinds":[38383, 31986, 1059]}' while IFS= read -r line; do - /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters" --dir both + /app/strfry --config /etc/strfry.conf sync ${line} --filter "$filters_federation" --dir both done < /app/federation_urls.txt