When separating rows with a column in factor format, the following error occurs: _Error in nchar(u, itype) : 'nchar()' requires a character vector_ This occurred when transitioning to the 1.1.2 version of tidyr using `separate_rows()`; a similar issue was resolved in the prior version (1.1.1): https://github.com/tidyverse/tidyr/issues/1014 Works fine: ```r df <- tibble( x = 1:3, y = c("a", "d,e,f", "g,h"), z = c("1", "2,3,4", "5,6") ) separate_rows(df, y, z, convert = TRUE) ``` Has error: _Error in nchar(u, itype) : 'nchar()' requires a character vector_ ```r df <- tibble( x = 1:3, y = factor("a", "d,e,f", "g,h"), z = c("1", "2,3,4", "5,6") ) separate_rows(df, y, z, convert = TRUE) ```