Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
050110922c | ||
|
|
f97db4643e |
2
.github/workflows/app-publish.yaml
vendored
2
.github/workflows/app-publish.yaml
vendored
@@ -50,7 +50,7 @@ jobs:
|
||||
- name: Upload release archive to GitHub release
|
||||
uses: alexellis/upload-assets@0.3.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }}
|
||||
with:
|
||||
asset_paths: '["build/jellyfin-publish/*"]'
|
||||
- name: Upload release archive to repo.jellyfin.org
|
||||
|
||||
@@ -15,6 +15,7 @@ import android.view.KeyEvent;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.PopupMenu;
|
||||
@@ -622,7 +623,7 @@ public class ItemListActivity extends FragmentActivity {
|
||||
@Override
|
||||
public void onResponse(UserItemDataDto response) {
|
||||
mBaseItem.setUserData(response);
|
||||
((TextUnderButton)v).setImageResource(response.getIsFavorite() ? R.drawable.ic_heart_red : R.drawable.ic_heart);
|
||||
((ImageButton)v).setImageResource(response.getIsFavorite() ? R.drawable.ic_heart_red : R.drawable.ic_heart);
|
||||
dataRefreshService.getValue().setLastFavoriteUpdate(System.currentTimeMillis());
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user