Skip to content

Commit

Permalink
Fix: remove url schema from self host config value and raise public v…
Browse files Browse the repository at this point in the history
…ersion of service.core project.
  • Loading branch information
tusmester committed Oct 4, 2021
1 parent 30277a2 commit 7592c1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Services.Core/Operations/ClientStoreOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static async Task<object> GetClients(Content content, HttpContext context
var clientType = IsAdmin() ? ClientType.All : ClientType.AllExternal;
var clientStore = context.GetClientStore();
var options = context.GetOptions();
var clients = (await clientStore.GetClientsByRepositoryAsync(options.RepositoryUrl, clientType)).ToArray();
var clients = (await clientStore.GetClientsByRepositoryAsync(options.RepositoryUrl.RemoveUrlSchema(), clientType)).ToArray();

return new
{
Expand Down
2 changes: 1 addition & 1 deletion src/Services.Core/SenseNet.Services.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.0.27</Version>
<Version>0.0.28</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Sense/Net Inc.</Company>
<Copyright>Copyright © Sense/Net Inc.</Copyright>
Expand Down

0 comments on commit 7592c1f

Please sign in to comment.