Skip to content

Commit fdbba31

Browse files
committed
fix for #66
1 parent ccfb0fa commit fdbba31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/MediaTypeModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export abstract class MediaTypeModel {
3333
abstract getTags(): string[];
3434

3535
toMetaDataObject(): object {
36-
return {...this.getWithOutUserData(), ...this.userData, tags: '#' + this.getTags().join('/')};
36+
return {...this.getWithOutUserData(), ...this.userData, tags: this.getTags().join('/')};
3737
}
3838

3939
getWithOutUserData(): object {

0 commit comments

Comments
 (0)