Merge pull request #275 from mouse-reeve/update-book

Fixes updating books from remote instances
This commit is contained in:
Mouse Reeve 2020-11-02 11:52:05 -08:00 committed by GitHub
commit 64d75fe014
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View file

@ -1,13 +1,13 @@
''' functionality outline for a book data connector '''
from abc import ABC, abstractmethod
from dataclasses import dataclass
from dateutil import parser
import pytz
import requests
from requests import HTTPError
from urllib3.exceptions import RequestError
from django.db import transaction
from dateutil import parser
import requests
from requests import HTTPError
from bookwyrm import models

View file

@ -69,7 +69,8 @@ def shared_inbox(request):
},
'Update': {
'Person': handle_update_user,
'Document': handle_update_book,
'Edition': handle_update_book,
'Work': handle_update_book,
},
}
activity_type = activity['type']
@ -337,7 +338,7 @@ def handle_update_book(activity):
document = activity['object']
# check if we have their copy and care about their updates
book = models.Book.objects.select_subclasses().filter(
remote_id=document['url'],
remote_id=document['id'],
sync=True,
).first()
if not book: