소스 검색

Fixes #1113: Fixes server error when attempting to delete an image attachment

Jeremy Stretch 9 년 전
부모
커밋
010f6c7f1a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      netbox/extras/views.py

+ 1 - 1
netbox/extras/views.py

@@ -27,4 +27,4 @@ class ImageAttachmentDeleteView(PermissionRequiredMixin, ObjectDeleteView):
     model = ImageAttachment
 
     def get_return_url(self, request, imageattachment):
-        return imageattachment.obj.get_absolute_url()
+        return imageattachment.parent.get_absolute_url()