summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2021-07-14 19:46:30 +0200
committerGitHub <noreply@github.com>2021-07-14 19:46:30 +0200
commitf73d64530a7ec00e22fdf2fdebb304894a3b4f44 (patch)
tree7852fdf721313c4a1fc468bacb6171a45eb14327 /app
parentca9ad0d2d33ce8c4299525e32664da33e28b9d91 (diff)
parent335d7fca6cbed49a38e0193197fb24e0871687bc (diff)
downloadAntennaPod-f73d64530a7ec00e22fdf2fdebb304894a3b4f44.zip
Merge pull request #5271 from ByteHamster/fix-pref-name
Fix preference name of swipe actions
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java b/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java
index b8b39c578..50c7c1ae5 100644
--- a/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java
+++ b/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java
@@ -31,8 +31,8 @@ import it.xabaras.android.recyclerview.swipedecorator.RecyclerViewSwipeDecorator
public class SwipeActions extends ItemTouchHelper.SimpleCallback implements LifecycleObserver {
public static final String PREF_NAME = "SwipeActionsPrefs";
- public static final String KEY_PREFIX_SWIPEACTIONS = "PrefSwipeActions6543";
- public static final String KEY_PREFIX_NO_ACTION = "PrefNoSwipeAction6543";
+ public static final String KEY_PREFIX_SWIPEACTIONS = "PrefSwipeActions";
+ public static final String KEY_PREFIX_NO_ACTION = "PrefNoSwipeAction";
public static final List<SwipeAction> swipeActions = Collections.unmodifiableList(
Arrays.asList(new AddToQueueSwipeAction(), new RemoveFromInboxSwipeAction(),