Skip to content

Commit

Permalink
up main files
Browse files Browse the repository at this point in the history
  • Loading branch information
fgl27 committed Aug 7, 2023
1 parent 3762525 commit e9e808d
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release/githubio/js/main.js

Large diffs are not rendered by default.

37 changes: 35 additions & 2 deletions release/githubio/js/main_uncompressed.js
Original file line number Diff line number Diff line change
Expand Up @@ -30678,6 +30678,10 @@
if (Screens_getChannelIsBlocked(channelId)) {
delete Main_values_History_data[AddUser_UsernameArray[0].id].blocked.channel[channelId];

if (ScreenObj[key].screen === Main_Blocked) {
Screens_deleteUpdateRows(key);
}

if (channelName) {
Main_EventBlocked('unblocked_channel', channelName);
}
Expand All @@ -30697,12 +30701,24 @@
}

Screens_BlockChannelUpdateInfo(channelId);

Screens_BlockCheckDeleteChannel(key);
}

Screens_deleteUpdateRows(key);
Main_setHistoryItem();
}

function Screens_BlockCheckDeleteChannel(key) {
if (
ScreenObj[key].screen !== Main_Blocked &&
ScreenObj[key].screen !== Main_ChannelClip &&
ScreenObj[key].screen !== Main_ChannelVod &&
!ScreenObj[key].IsUser
) {
Screens_deleteUpdateRows(key);
}
}

function Screens_BlockChannelGetId(key) {
var channelId;

Expand Down Expand Up @@ -30823,6 +30839,10 @@
if (Screens_getGameIsBlocked(gameId)) {
delete Main_values_History_data[AddUser_UsernameArray[0].id].blocked.game[gameId];

if (ScreenObj[key].screen === Main_Blocked) {
Screens_deleteUpdateRows(key);
}

if (gameName) {
Main_EventBlocked('unblocked_game', gameName);
}
Expand All @@ -30843,12 +30863,25 @@
}

Screens_BlockGameUpdateInfo(gameId);

Screens_BlockCheckDeleteGame(key);
}

Screens_deleteUpdateRows(key);
Main_setHistoryItem();
}

function Screens_BlockCheckDeleteGame(key) {
if (
ScreenObj[key].screen !== Main_Blocked &&
ScreenObj[key].screen !== Main_aGame &&
ScreenObj[key].screen !== Main_AGameVod &&
ScreenObj[key].screen !== Main_AGameClip &&
!ScreenObj[key].IsUser
) {
Screens_deleteUpdateRows(key);
}
}

function Screens_BlockGameGetId(key) {
var gameId;

Expand Down

0 comments on commit e9e808d

Please sign in to comment.