mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-04 05:46:07 +02:00
Fix VIP filter at startup for feed and gameLog
This commit is contained in:
@@ -79,6 +79,15 @@ export const useFeedStore = defineStore('Feed', () => {
|
||||
{ flush: 'sync' }
|
||||
);
|
||||
|
||||
watch(
|
||||
() => watchState.isFavoritesLoaded,
|
||||
(isFavoritesLoaded) => {
|
||||
if (isFavoritesLoaded && state.feedTable.vip) {
|
||||
feedTableLookup(); // re-apply VIP filter after friends are loaded
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
function feedSearch(row) {
|
||||
const value = state.feedTable.search.toUpperCase();
|
||||
if (!value) {
|
||||
|
||||
Reference in New Issue
Block a user