Skip to content

Commit

Permalink
Merge pull request #21 from zaanposni/fix/analyzedAtForNewInformation
Browse files Browse the repository at this point in the history
fix/analyzedAtForNewInformation
  • Loading branch information
zaanposni authored Jan 24, 2024
2 parents 9f85b34 + f082404 commit e1ef912
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/dataimport/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
direct_url = "https://www.youtube.com/channel/" + channel_id + "/community?lb={}"

INSERT_STATEMENT = """
INSERT INTO Information (id , remoteId, text, imageUri, href, date, importedAt, importedFrom)
VALUES ('{}', '{}' , '{}', {} , '{}', '{}', now() , 'YouTube')"""
INSERT INTO Information (id , remoteId, text, imageUri, href, date, importedAt, analyzedAt, importedFrom)
VALUES ('{}', '{}' , '{}', {} , '{}', '{}', now() , NULL, 'YouTube')"""

DAY_REGEX = re.compile(r"(\d+) days? ago")
MONTH_REGEX = re.compile(r"(\d+) months? ago")
Expand Down
4 changes: 2 additions & 2 deletions src/psaggregator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/psaggregator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "psaggregator",
"version": "1.2.2",
"version": "1.2.3",
"scripts": {
"dev": "vite dev",
"build": "vite build",
Expand Down

0 comments on commit e1ef912

Please sign in to comment.