Skip to content

Commit

Permalink
Fiks av dimensjon det itereres over
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthon committed Dec 19, 2024
1 parent e33be91 commit 049f7b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/autoReport.R
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ runAutoReport <- function(dayNumber = as.POSIXlt(Sys.Date())$yday + 1,
# get sender from common config
conf <- rapbase::getConfig("rapbaseConfig.yml")

for (i in seq_len(length(reps))) {
for (i in seq_len(dim(reps)[1])) {
tryCatch(
{
if (target == "db") {
Expand Down

0 comments on commit 049f7b3

Please sign in to comment.