fix: Overwrite(add command) was using snapshots without timestamps (and in memory), causing issues with some extractors

This commit is contained in:
Cristian 2021-01-16 14:11:45 -05:00
parent a36f36866f
commit 30c886d4d4
3 changed files with 3 additions and 1 deletions

View file

@ -106,6 +106,7 @@ class Snapshot(models.Model):
if "tags" in info:
# TODO: Handle tags
info.pop("tags")
info.pop("base_url", None)
return cls(**info)
def get_history(self) -> dict: