Fixed wrong context

This commit is contained in:
Nite 2020-06-30 22:10:15 +02:00
parent 5b5c8ea8b7
commit 60250a42a9
No known key found for this signature in database
GPG Key ID: 1D1AD59B1C6386C1
1 changed files with 2 additions and 2 deletions

View File

@ -186,8 +186,8 @@ public class DownloadActivity extends SubsonicTabActivity implements OnGestureLi
if (!useFiveStarRating) ratingLinearLayout.setVisibility(View.GONE);
hollowStar = Util.getDrawableFromAttribute(SubsonicTabActivity.getInstance(), R.attr.star_hollow);
fullStar = Util.getDrawableFromAttribute(SubsonicTabActivity.getInstance(), R.attr.star_full);
hollowStar = Util.getDrawableFromAttribute(this, R.attr.star_hollow);
fullStar = Util.getDrawableFromAttribute(this, R.attr.star_full);
fiveStar1ImageView.setOnClickListener(new View.OnClickListener()
{