fix retrieveFrag call

This commit is contained in:
Lachlan Kermode
2018-12-12 16:07:19 +00:00
parent b2276c694e
commit f909abfdc0

View File

@@ -189,7 +189,7 @@ class Fetcher {
retrieveFrag (tab, resource, frag) {
const title = fmtName(tab)
const url = `${this.sheetName}/${tab}/${resource}/${frag}`
const url = `${this.id}/${tab}/${resource}/${frag}`
return this.db.load(url, this.blueprints[title])
}
}