We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c798fc commit f00a80cCopy full SHA for f00a80c
Raindrop.API/Public/Export/Export-Raindrop.ps1
@@ -33,8 +33,7 @@ function Export-Raindrop {
33
34
try {
35
if ([string]::IsNullOrEmpty($OutFile)) {
36
- $response = Invoke-RestMethod -Uri $url -Headers $headers -Method Get
37
- return $response
+ Invoke-RestMethod -Uri $url -Headers $headers -Method Get
38
}
39
else {
40
Invoke-WebRequest -Uri $url -Headers $headers -Method Get -OutFile $OutFile
Raindrop.API/Raindrop.API.psm1
@@ -1,4 +1,4 @@
1
-$Global:RaindropBaseUrl = "https://api.raindrop.io/rest/v1/"
+$Global:RaindropBaseUrl = "https://api.raindrop.io/rest/v1"
2
3
#Get public and private function definition files.
4
$Public = @( Get-ChildItem -Path $PSScriptRoot\Public -Recurse -Filter *.ps1 -ErrorAction SilentlyContinue )
0 commit comments