Skip to content

Commit

Permalink
Include December (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
avgupta456 authored Dec 19, 2022
1 parent 4ab3eb5 commit d80e082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/subscriber/processing/wrapped.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
async def query_wrapped_user(
user_id: str, year: int, no_cache: bool = False
) -> Optional[WrappedPackage]:
start_date, end_date = date(year, 1, 1), date(year, 11, 30)
start_date, end_date = date(year, 1, 1), date(year, 12, 31)
user: Optional[PublicUserModel] = await db_get_public_user(user_id)
access_token = None if user is None else user.access_token
private_access = False if user is None else user.private_access or False
Expand Down

0 comments on commit d80e082

Please sign in to comment.