Skip to content

Commit

Permalink
fix: 手动保存的这几个cookie都应该是hostOnly=false
Browse files Browse the repository at this point in the history
  • Loading branch information
muedsa committed Dec 9, 2024
1 parent 8376a96 commit 30f9f9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ object BiliCookieHelper {
secure: Boolean = false,
httpOnly: Boolean = false,
persistent: Boolean = true,
hostOnly: Boolean = true,
hostOnly: Boolean = false,
) : SerializableCookie = SerializableCookie(
name = name,
value = value,
Expand Down

0 comments on commit 30f9f9b

Please sign in to comment.