Skip to content

Commit

Permalink
forgot about artist/title unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
cyperdark committed Sep 4, 2020
1 parent c9b97ea commit bd404fb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,14 @@ class Api {
update: data[0].last_update,
},
data: {
artist: data[0].artist,
title: data[0].title,
artist: {
original: data[0].artist,
unicode: data[0].artist_unicode,
},
title: {
original: data[0].title,
unicode: data[0].title_unicode,
},
creator: {
id: +data[0].creator_id,
name: data[0].creator,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "osu-api-extended",
"version": "0.5.0",
"version": "0.5.1",
"description": "Package for advanced work with 'osu' api",
"main": "index.js",
"scripts": {},
Expand Down

0 comments on commit bd404fb

Please sign in to comment.