From 8ea7f5d3a063c38cd0ee2a82dace43c955a72c9f Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Wed, 23 Jul 2014 15:30:01 -0700 Subject: [PATCH] framed replay: don't use is_timegate to determine frame usage due to potential ambiguity, memento will need to use the mp_ modifier --- pywb/webapp/replay_views.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pywb/webapp/replay_views.py b/pywb/webapp/replay_views.py index 0b8bb528..c4e0f4f3 100644 --- a/pywb/webapp/replay_views.py +++ b/pywb/webapp/replay_views.py @@ -67,8 +67,7 @@ class BaseContentView(object): # (not supported in proxy mode) if (self.is_frame_mode and wbrequest.wb_url and not wbrequest.wb_url.mod and - not wbrequest.options['is_proxy'] and - not wbrequest.options.get('is_timegate', False)): + not wbrequest.options['is_proxy']): embed_url = wbrequest.wb_url.to_str(mod=self._mp_mod) timestamp = datetime_to_timestamp(datetime.datetime.utcnow())