Skip to content

Commit 59dd981

Browse files
authored
Merge pull request #1484 from altoiddealer/api_get_extensions_commit_date
Correct commit_date type to 'int'
2 parents f82029c + 7dde12e commit 59dd981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,5 +332,5 @@ class ExtensionItem(BaseModel):
332332
branch: str = Field(title="Branch", description="Extension Repository Branch")
333333
commit_hash: str = Field(title="Commit Hash", description="Extension Repository Commit Hash")
334334
version: str = Field(title="Version", description="Extension Version")
335-
commit_date: str = Field(title="Commit Date", description="Extension Repository Commit Date")
335+
commit_date: int = Field(title="Commit Date", description="Extension Repository Commit Date")
336336
enabled: bool = Field(title="Enabled", description="Flag specifying whether this extension is enabled")

0 commit comments

Comments
 (0)