fix: update search default option.

This commit is contained in:
EstrellaXD
2023-08-20 14:16:58 +08:00
parent c4c4bfcdb6
commit bcdff91185
2 changed files with 3 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ class RSSItem(SQLModel, table=True):
id: int = Field(default=None, primary_key=True, alias="id")
name: Optional[str] = Field(None, alias="name")
url: str = Field("https://mikanani.me", alias="url")
aggregate: bool = Field(True, alias="aggregate")
aggregate: bool = Field(False, alias="aggregate")
parser: str = Field("mikan", alias="parser")
enabled: bool = Field(True, alias="enabled")