From 25489ad90112f294dea1ca8f795702f55a40706e Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 29 Sep 2015 12:33:35 +0200 Subject: [PATCH] Removing watchers change details from issues, tasks and userstories activity, fixing small issue --- taiga/projects/history/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taiga/projects/history/models.py b/taiga/projects/history/models.py index ae0dd356..09266e6a 100644 --- a/taiga/projects/history/models.py +++ b/taiga/projects/history/models.py @@ -141,8 +141,8 @@ class HistoryEntry(models.Model): elif key in users_keys: value = [resolve_value("users", x) for x in self.diff[key]] elif key == "watchers": - value = [[resolve_value("users", x) for x in self.diff[key][0]], - [resolve_value("users", x) for x in self.diff[key][1]]] + # Old instances can have watchers + continue elif key == "points": points = {}