Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--readactivity.py4
2 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 38a338c..3440911 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+* #8352 Fix keep error with no document (morgs)
+
50
* #7948, #7168, #6488 Fix saving to the datastore (morgs)
diff --git a/readactivity.py b/readactivity.py
index 40cd061..5cf31ad 100644
--- a/readactivity.py
+++ b/readactivity.py
@@ -247,6 +247,10 @@ class ReadActivity(activity.Activity):
search text.
"""
+ if self._tempfile is None:
+ # Workaround for closing Read with no document loaded
+ raise NotImplementedError
+
try:
self.metadata['Read_current_page'] = \
str(self._document.get_page_cache().get_current_page())