Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
  • Loading branch information
Grotax committed Dec 29, 2024
1 parent 8e2c398 commit 45a36e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions lib/Fetcher/FeedFetcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,10 @@ public function fetch(

$feed->setNextUpdateTime($resource->getNextUpdate()?->getTimestamp());
$this->logger->debug(
'Feed {url} was parsed and nextUpdateTime is {nextUpdateTime} recorded as {feedUpdate}',
'Feed {url} was parsed and nextUpdateTime is {nextUpdateTime}',
[
'url' => $url,
'nextUpdateTime' => $resource->getNextUpdate()->getTimestamp(),
'feedUpdate' => $feed->getNextUpdateTime(),
'nextUpdateTime' => $feed->getNextUpdateTime()
]
);

Expand Down
2 changes: 1 addition & 1 deletion tests/javascript/unit/components/AdminSettings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('AdminSettings.vue', () => {
})

it('should initialize and fetch settings from state', () => {
expect(loadState).toBeCalledTimes(8)
expect(loadState).toBeCalledTimes(9)
})

it('should send post with updated settings', async () => {
Expand Down

0 comments on commit 45a36e0

Please sign in to comment.