appview-less bluesky client
26
fork

Configure Feed

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

fix creating likes / reposts

dawn 81777bf4 76571d5b

+3 -1
+3 -1
src/lib/state.svelte.ts
··· 184 184 // eslint-disable-next-line svelte/prefer-svelte-reactivity 185 185 createdAt: new Date().toISOString() 186 186 }; 187 - setNestedValue(record, subject.split('.'), post.uri); 187 + const subjectPath = subject.split('.'); 188 + setNestedValue(record, subjectPath, post.uri); 189 + setNestedValue(record, [...subjectPath.slice(0, -1), 'cid'], post.cid); 188 190 await client.atcute?.post('com.atproto.repo.createRecord', { 189 191 input: { 190 192 repo: did,