Skip to content

Commit

Permalink
Address problems with the previous fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aoles committed Mar 19, 2024
1 parent 1ce1888 commit 1e715b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: RBioFormats
Version: 1.3.1
Version: 1.3.2
BioFormats: 6.12.0
Title: R interface to Bio-Formats
Description: An R package which interfaces the OME Bio-Formats Java library to
Expand Down
4 changes: 2 additions & 2 deletions R/metadataAccessors.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ seriesMetadata = function (x, series, ...) .getMetadata(x, series, ...)

.getMetadata = function (x, series, ...) {
## metadata type equals accessor name
sys_call <- sys.call(-1L)[[1L]]
type = as.character(sys_call[[length(sys_call)]])# account for calls via `::`
sys_call <- as.character(sys.call(-1L)[[1L]])
type = sys_call[[length(sys_call)]]# account for calls via `::` and `:::`

metadata = metadata(x)

Expand Down

0 comments on commit 1e715b1

Please sign in to comment.