diff --git a/src/lib/components/activity.svelte b/src/lib/components/activity.svelte index 5025313..8969d5a 100644 --- a/src/lib/components/activity.svelte +++ b/src/lib/components/activity.svelte @@ -1,13 +1,13 @@ @@ -17,16 +17,14 @@ {#each activity as activityItem}
  • -

    {activityItem.content.id}

    +

    {activityItem.content.titles}

    Watched episode {activityItem.activity.progress} at {activityItem.activity.performedAt}

    - {#if activityItem.session.participants?.length} + {#if activityItem.session.otherParticipants?.length}

    With:

    - {#each activityItem.session.participants ?? [] as participant} - {participant.uri.split('at://')[1]} + {#each activityItem.session.otherParticipants ?? [] as participant} + {participant.split('at://')[1]} {/each} {/if}
    diff --git a/src/lib/components/list.svelte b/src/lib/components/list.svelte index d6ad39e..5fd8fdc 100644 --- a/src/lib/components/list.svelte +++ b/src/lib/components/list.svelte @@ -1,9 +1,9 @@