letterboxdpy icon indicating copy to clipboard operation
letterboxdpy copied to clipboard

fix liked list entries

Open S1NJED opened this issue 6 months ago • 0 comments

I have fixed a little bug where liked list where treated as a movie (User.get_activity())

from this:

"9714176250": {
    "activity_type": "basic",
    "timestamp": "2025-09-01T01:14:09.687000Z",
    "content": {
        "action": "liked",
        "description": "oooguuh liked Vesey\u2019s Rotoscoping list",
        "movie": {
            "title": "Rotoscoping",
            "slug": "rotoscoping",
            "url": "https://letterboxd.com/film/rotoscoping/"
        }
    }
}

to this:

"9714176250": {
    "activity_type": "basic",
    "timestamp": "2025-09-01T01:14:09.687000Z",
    "content": {
        "action": "liked",
        "description": "oooguuh liked Vesey\u2019s Rotoscoping list",
        "list": {
            "title": "Rotoscoping",
            "url": "https://letterboxd.com/vesey/list/rotoscoping/"
        }
    }
}

S1NJED avatar Sep 01 '25 23:09 S1NJED