mirror of
https://github.com/sensebox/opensensmapr
synced 2025-04-05 12:30:27 +02:00
fix archive 404 handling
This commit is contained in:
parent
33a9c42e54
commit
abcfbf5910
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ archive_fetch_measurements = function (box, sensor, fromDate, toDate, progress)
|
||||||
))
|
))
|
||||||
|
|
||||||
if (httr::status_code(res) == 404)
|
if (httr::status_code(res) == 404)
|
||||||
return(as.data.frame)
|
return(data.frame(createdAt = character(), value = character()))
|
||||||
}
|
}
|
||||||
|
|
||||||
measurements = httr::content(res, type = 'text', encoding = 'UTF-8') %>%
|
measurements = httr::content(res, type = 'text', encoding = 'UTF-8') %>%
|
||||||
|
|
Loading…
Add table
Reference in a new issue