Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/jhsh_checkIn.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ let skipDay = getEnv('JHSH_SKIPDAY') || ''; // 下个断签日 (适用于借记
let bodyArr = bodyStr ? bodyStr.split("|") : [];
let bodyArr2 = autoLoginInfo ? autoLoginInfo.split("|") : [];
$.is_debug = getEnv('is_debug') || 'false';

if (isGetCookie = typeof $request !== `undefined`) {
const isGetCookie = typeof $request !== `undefined`;
if (isGetCookie) {
GetCookie();
$.done();
} else {
Expand Down