Skip to content

Commit

Permalink
*sigh* Fix returning years in scriptresolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
dschmidt committed Feb 4, 2012
1 parent c9b1dae commit e3f6e61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libtomahawk/resolvers/scriptresolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ ScriptResolver::handleMsg( const QByteArray& msg )
rp->setSize( m.value( "size" ).toUInt() );
rp->setRID( uuid() );
rp->setFriendlySource( m_name );
rp->setYear( m.value( "year ").toUInt() );
rp->setYear( m.value( "year").toUInt() );
rp->setDiscNumber( m.value( "discnumber" ).toUInt() );

rp->setMimetype( m.value( "mimetype" ).toString() );
Expand Down

0 comments on commit e3f6e61

Please sign in to comment.