Skip to content

Commit 720ce15

Browse files
authored
Merge pull request KelvinTegelaar#1153 from KelvinTegelaar/dev
Dev to hotfix
2 parents ca40bab + eeb9068 commit 720ce15

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Modules/CIPPCore/Public/Entrypoints/HTTP Functions/CIPP/Extensions/Invoke-ExecExtensionsConfig.ps1

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Function Invoke-ExecExtensionsConfig {
3232
# Check if NinjaOne URL is set correctly and the instance has at least version 5.6
3333
if ($Body.NinjaOne) {
3434
$AllowedNinjaHostnames = @(
35-
'app.ninjarmmm.com',
36-
'eu.ninjarmmm.com',
37-
'oc.ninjarmmm.com',
38-
'ca.ninjarmmm.com',
35+
'app.ninjarmm.com',
36+
'eu.ninjarmm.com',
37+
'oc.ninjarmm.com',
38+
'ca.ninjarmm.com',
3939
'us2.ninjarmm.com'
4040
)
4141
$SetNinjaHostname = $Body.NinjaOne.Instance -replace '/ws', '' -replace 'https://', ''
@@ -46,7 +46,7 @@ Function Invoke-ExecExtensionsConfig {
4646
try {
4747
[version]$Version = (Invoke-WebRequest -Method GET -Uri "$SetNinjaHostname/app-version.txt" -ea stop).content
4848
} catch {
49-
throw "Failed to connect to NinjaOne check your Instance is set correctly eg 'app.ninjarmmm.com'"
49+
throw "Failed to connect to NinjaOne check your Instance is set correctly eg 'app.ninjarmm.com'"
5050
}
5151
if ($Version -lt [version]'5.6.0.0') {
5252
throw 'NinjaOne 5.6.0.0 is required.'

Modules/CippExtensions/Public/NinjaOne/Invoke-NinjaOneTenantSync.ps1

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ function Invoke-NinjaOneTenantSync {
6060
$Configuration = ((Get-CIPPAzDataTableEntity @Table).config | ConvertFrom-Json).NinjaOne
6161

6262
$AllowedNinjaHostnames = @(
63-
'app.ninjarmmm.com',
64-
'eu.ninjarmmm.com',
65-
'oc.ninjarmmm.com',
66-
'ca.ninjarmmm.com',
63+
'app.ninjarmm.com',
64+
'eu.ninjarmm.com',
65+
'oc.ninjarmm.com',
66+
'ca.ninjarmm.com',
6767
'us2.ninjarmm.com'
6868
)
6969

version_latest.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.5.1
1+
6.5.2

0 commit comments

Comments
 (0)