Skip to content

Commit b412151

Browse files
committed
Fix issue in UI message default if no mementos returned, re:#285 and #485
1 parent 14e24bf commit b412151

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bundledApps/WAIL.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,6 @@ def fetch_mementos(self): # MemGator in server mode
472472
time.sleep(500)
473473
tm = self.memgator.get_timemap(current_uri_value, 'cdxj').split('\n')
474474

475-
# TODO: bug, on Gogo internet MemGator cannot hit aggregator, which
476-
# results in 0 mementos, for which MemGator throws exception
477-
478475
m_count = 0
479476
arch_hosts = set()
480477

@@ -1717,6 +1714,9 @@ def get_flags(self):
17171714
def get_timemap(self, uri, timemap_format=config.memgator_format):
17181715
tm_uri = f'{config.uri_aggregator}timemap/{timemap_format}/{uri}'
17191716
resp = requests.get(tm_uri)
1717+
1718+
if 'text/plain' in resp.headers['content-type']: # 404, no mementos
1719+
return ""
17201720
self.last_uri = tm_uri
17211721
return resp.text
17221722

0 commit comments

Comments
 (0)