Allow character value for isFunded

This commit is contained in:
Rucknium
2024-01-24 19:52:25 +00:00
committed by GitHub
parent b47a5e1208
commit 2b44101114

View File

@@ -31,7 +31,7 @@ cache.fundingrequired <- function() {
for (i in seq_along(projects.json)) {
if (!projects.json[[i]]$isFunded) {
if ( grepl("^F", projects.json[[i]]$isFunded, ignore.case = TRUE) ) {
needs.funding.index <- c(needs.funding.index, i)
}
}