fix result on empty task

This commit is contained in:
Michael Shamoon 2022-05-26 23:11:15 -07:00
parent 6b4d8b18e0
commit 71b34aa3bd

View File

@ -614,7 +614,7 @@ class TasksViewSerializer(serializers.ModelSerializer):
def get_result(self, obj):
result = ""
if hasattr(obj, "attempted_task"):
if hasattr(obj, "attempted_task") and obj.attempted_task:
result = obj.attempted_task.result
return result