@nina-protocol/nina-db 0.0.40 → 0.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/models/Release.js +1 -0
- package/package.json +1 -1
- package/src/models/Release.js +1 -0
package/dist/models/Release.js
CHANGED
|
@@ -134,6 +134,7 @@ export default class Release extends Model {
|
|
|
134
134
|
this.hub.authority = authority.publicKey;
|
|
135
135
|
delete this.hub.authorityId;
|
|
136
136
|
}
|
|
137
|
+
await publisher.format();
|
|
137
138
|
this.publisher = publisher.publicKey;
|
|
138
139
|
this.publisherAccount = publisher;
|
|
139
140
|
delete this.publisherId;
|
package/package.json
CHANGED
package/src/models/Release.js
CHANGED
|
@@ -147,6 +147,7 @@ export default class Release extends Model {
|
|
|
147
147
|
this.hub.authority = authority.publicKey;
|
|
148
148
|
delete this.hub.authorityId;
|
|
149
149
|
}
|
|
150
|
+
await publisher.format();
|
|
150
151
|
this.publisher = publisher.publicKey;
|
|
151
152
|
this.publisherAccount = publisher;
|
|
152
153
|
delete this.publisherId
|