Skip to content

Commit

Permalink
InternetPlaylistItem: Cast to int
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaski committed Apr 23, 2024
1 parent 7809665 commit 36e809d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internet/internetplaylistitem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ InternetPlaylistItem::InternetPlaylistItem(InternetServicePtr service, const Son

bool InternetPlaylistItem::InitFromQuery(const SqlRow &query) {

metadata_.InitFromQuery(query, false, Song::kRowIdColumns.count() * 3);
metadata_.InitFromQuery(query, false, static_cast<int>(Song::kRowIdColumns.count()) * 3);
InitMetadata();
return true;

Expand Down

0 comments on commit 36e809d

Please sign in to comment.