pathartl / BleemSync

An application manage and launch PlayStation Classic games from USB storage
682 stars 88 forks source link

If release date is empty, you can't manage the title (BleemSync UI) (BleemSync 1.2) #399

Closed vcalderondev closed 4 years ago

vcalderondev commented 5 years ago

Line 143, in /opt/bleemsync_ui/wwwroot/lib/bleemsync/game-manager.js

If you didn't add the release date, you can't manage the title.

I've fixed with this simple validation:

data.ReleaseDate = data.ReleaseDate != null ? data.ReleaseDate.split('T')[0] : '';

Sorry, my english isn't good enough.

Thanks!