Skip to content

Commit

Permalink
Fixed a case issue that causes errors on case-sensitive systems
Browse files Browse the repository at this point in the history
  • Loading branch information
dipterix committed Sep 12, 2024
1 parent c145196 commit 466ff6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/edf.R
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ read_edf <- function(

channel_data <- lapply(seq_along(data$selection$channels), function(ii) {
chn <- data$selection$channels[[ii]]
filebase <- file_path(extract_path, sprintf("ch%d", chn))
filebase <- file_path(extract_path, sprintf("Ch%d", chn))
channel_data <- data$results[[ii]]

signal_length <- length(channel_data$value)
Expand Down

0 comments on commit 466ff6e

Please sign in to comment.