1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

framed replay: don't use is_timegate to determine frame usage due to potential

ambiguity, memento will need to use the mp_ modifier
This commit is contained in:
Ilya Kreymer 2014-07-23 15:30:01 -07:00
parent e513b3755c
commit 8ea7f5d3a0

View File

@ -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())