Merge pull request #2513 from paperless-ngx/fix-2511

Fix: comments not showing in search until after manual reindex in v1.12
This commit is contained in:
shamoon 2023-01-25 12:16:12 -08:00 committed by GitHub
commit 8e8b2d7e8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -26,7 +26,7 @@
</div> </div>
<p class="card-text"> <p class="card-text">
<span *ngIf="document.__search_hit__ && document.__search_hit__.highlights" [innerHtml]="document.__search_hit__.highlights"></span> <span *ngIf="document.__search_hit__ && document.__search_hit__.highlights" [innerHtml]="document.__search_hit__.highlights"></span>
<span *ngIf="document.__search_hit__ && document.__search_hit__.comment_highlights"> <span *ngIf="document.__search_hit__ && document.__search_hit__.comment_highlights" class="d-block">
<svg width="1em" height="1em" fill="currentColor" class="me-2"> <svg width="1em" height="1em" fill="currentColor" class="me-2">
<use xlink:href="assets/bootstrap-icons.svg#chat-left-text"/> <use xlink:href="assets/bootstrap-icons.svg#chat-left-text"/>
</svg> </svg>

View File

@ -445,6 +445,10 @@ class DocumentViewSet(
) )
c.save() c.save()
from documents import index
index.add_or_update_document(self.get_object())
return Response(self.getComments(doc)) return Response(self.getComments(doc))
except Exception as e: except Exception as e:
logger.warning(f"An error occurred saving comment: {str(e)}") logger.warning(f"An error occurred saving comment: {str(e)}")
@ -456,6 +460,11 @@ class DocumentViewSet(
elif request.method == "DELETE": elif request.method == "DELETE":
comment = Comment.objects.get(id=int(request.GET.get("id"))) comment = Comment.objects.get(id=int(request.GET.get("id")))
comment.delete() comment.delete()
from documents import index
index.add_or_update_document(self.get_object())
return Response(self.getComments(doc)) return Response(self.getComments(doc))
return Response( return Response(