๐Ÿ“ฆโž”๐Ÿฆ‹ Store and retrieve files on the Atmosphere
35
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix issues with millipds

Ducky 6555083e edd8f80f

+8 -2
+8 -2
src/lexi/com_atproto.sh
··· 32 32 repo="$1" 33 33 collection="$2" 34 34 cursor="$3" 35 + 36 + query="repo=$repo&collection=$collection&limit=$_max_list" 37 + [[ -n "$cursor" ]] && query+="&cursor=$cursor" 35 38 36 - atfile.xrpc.pds.get "com.atproto.repo.listRecords" "repo=$repo&collection=$collection&limit=$_max_list&cursor=$cursor" 39 + atfile.xrpc.pds.get "com.atproto.repo.listRecords" "$query" 37 40 } 38 41 39 42 function com.atproto.repo.putRecord() { ··· 65 68 function com.atproto.sync.listBlobs() { 66 69 did="$1" 67 70 cursor="$2" 71 + 72 + query="did=$did&limit=$_max_list" 73 + [[ -n "$cursor" ]] && query+="&cursor=$cursor" 68 74 69 - atfile.xrpc.pds.get "com.atproto.sync.listBlobs" "did=$did&limit=$_max_list&cursor=$cursor" 75 + atfile.xrpc.pds.get "com.atproto.sync.listBlobs" "$query" 70 76 } 71 77 72 78 function com.atproto.sync.uploadBlob() {