Compare commits

..

No commits in common. "aa4c877046f328b09a48ca7bc52185cbb9f19e86" and "27b0dc742cc525830e08c6999fd6472df2f73639" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -65,10 +65,10 @@ public class QueryReceiverActivity extends AppCompatActivity {
intent.putExtra(Constants.INTENT_EXTRA_VIEW_ALBUM, true);
if (albumId.indexOf("ar-") == 0) {
intent.putExtra(Constants.INTENT_EXTRA_NAME_ARTIST, true);
albumId = albumId.replaceFirst("ar-", "");
albumId = albumId.replace("ar-", "");
} else if (albumId.indexOf("so-") == 0) {
intent.putExtra(Constants.INTENT_EXTRA_SEARCH_SONG, name);
albumId = albumId.replaceFirst("so-", "");
albumId = albumId.replace("so-", "");
}
intent.putExtra(Constants.INTENT_EXTRA_NAME_ID, albumId);
if (name != null) {