store id with certifiers

This commit is contained in:
Jannis R
2016-12-09 13:35:10 +01:00
parent 3dc943e854
commit fd88421e88
4 changed files with 13 additions and 9 deletions

View File

@@ -53,7 +53,7 @@ export default class BadgeReg {
name = name === ZERO32 ? null : hex2Ascii(name);
return this.fetchMeta(id)
.then(({ title, icon }) => {
const data = { address, name, title, icon };
const data = { address, id, name, title, icon };
this.certifiers[id] = data;
return data;
});