Skip to content

Commit b895f6d

Browse files
committed
fix #397
1 parent ebf7113 commit b895f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/geoflow_validator.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ geoflow_validator_cell <- R6Class("geoflow_validator_cell",
112112
#If cell is empty and can be empty it's okay, nothing to validate
113113
if(private$na_authorized){
114114
if(is.na(private$str)) return(report)
115-
if(private$str == "") return(report)
115+
if(as(private$str, "character") == "") return(report)
116116
}
117117
#If cell is empty and should't be empty return a error
118118
if(!private$na_authorized){

0 commit comments

Comments
 (0)