We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccfb0fa commit fdbba31Copy full SHA for fdbba31
src/models/MediaTypeModel.ts
@@ -33,7 +33,7 @@ export abstract class MediaTypeModel {
33
abstract getTags(): string[];
34
35
toMetaDataObject(): object {
36
- return {...this.getWithOutUserData(), ...this.userData, tags: '#' + this.getTags().join('/')};
+ return {...this.getWithOutUserData(), ...this.userData, tags: this.getTags().join('/')};
37
}
38
39
getWithOutUserData(): object {
0 commit comments