diff --git a/DESCRIPTION b/DESCRIPTION index e146d0e111c154a24e628d62e4b9124cb755bd16..c61ecc4c521a5ab47a67a59208c1093840e6fad6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: airGR Type: Package Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling -Version: 1.6.9.6 +Version: 1.6.9.7 Date: 2021-01-08 Authors@R: c( person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")), diff --git a/NEWS.md b/NEWS.md index 0d1ef362ad5e249aaec48fdc607453dd7d60cdd4..719fc4d6f0a442afe2884edc3d36ee94adf945aa 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,7 +2,7 @@ -### 1.6.9.6 Release Notes (2021-01-08) +### 1.6.9.7 Release Notes (2021-01-08) #### New features diff --git a/R/Utils.R b/R/Utils.R index a6153a7a6b983cf94fb3e7a4a8c754e2340d9b34..6f149904361a1ffee7076104dfd46f51bfccb982 100644 --- a/R/Utils.R +++ b/R/Utils.R @@ -94,7 +94,11 @@ res0 <- x[i] } if (is.list(x) & !inherits(x, "POSIXt")) { - res0 <- .ExtractInputsModel(x = x, i = i) + if (inherits(x, "OutputsModel")) { + res0 <- .ExtractOutputsModel(x = x, i = i) + } else { + res0 <- .ExtractInputsModel(x = x, i = i) + } } return(res0) })