Skip to content

Commit d8ba683

Browse files
fix option handling
1 parent 966ffcf commit d8ba683

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/data.table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ replace_dot_alias = function(e) {
545545
if (allLen1) {
546546
irows = f__
547547
} else {
548-
join.many = getOption("datatable.join.many") # #914, default TRUE for backward compatibility
548+
join.many = isTRUE(getOption("datatable.join.many", TRUE)) # #914, default TRUE for backward compatibility
549549
anyDups = !notjoin &&
550550
(
551551
# #698. When notjoin=TRUE, ignore allow.cartesian. Rows in answer will never be > nrow(x).

0 commit comments

Comments
 (0)