fix retrieving drive by name (closes #104)

This commit is contained in:
Hong Ooi 2022-02-21 09:24:27 +11:00
Родитель 6f43ccc9e7
Коммит 3eea8528c2
5 изменённых файлов: 9 добавлений и 4 удалений

Просмотреть файл

@ -1,6 +1,6 @@
Package: Microsoft365R
Title: Interface to the 'Microsoft 365' Suite of Cloud Services
Version: 2.3.3
Version: 2.3.3.9000
Authors@R: c(
person("Hong", "Ooi", , "hongooi73@gmail.com", role = c("aut", "cre")),
person("Roman", "Zenka", role="ctb"),

Просмотреть файл

@ -1,3 +1,8 @@
# Microsoft365R 2.3.3.9000
- Fix a bug in retrieving a drive by name (#104).
# Microsoft365R 2.3.3
- Compatibility update for emayili version 0.6+. Note that this _breaks_ compatibility with emayili versions 0.5 and earlier.

Просмотреть файл

@ -243,7 +243,7 @@ add_group_methods <- function()
wch <- which(sapply(drives, function(drv) drv$properties$name == drive_name))
if(length(wch) != 1)
stop("Invalid drive name", call.=FALSE)
return(drives[[1]])
return(drives[[wch]])
}
op <- if(is.null(drive_id))
"drive"

Просмотреть файл

@ -71,7 +71,7 @@ public=list(
wch <- which(sapply(drives, function(drv) drv$properties$name == drive_name))
if(length(wch) != 1)
stop("Invalid drive name", call.=FALSE)
return(drives[[1]])
return(drives[[wch]])
}
op <- if(is.null(drive_id))
"drive"

Просмотреть файл

@ -125,7 +125,7 @@ public=list(
wch <- which(sapply(drives, function(drv) drv$properties$name == drive_name))
if(length(wch) != 1)
stop("Invalid drive name", call.=FALSE)
return(drives[[1]])
return(drives[[wch]])
}
op <- if(is.null(drive_id))
"drive"