Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhiogo Acioli committed Jun 11, 2023
1 parent f9da4b0 commit 9fbafc6
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MM.API/Functions/ExternalFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public ExternalFunction(IConfiguration config)
try
{
using var http = new HttpClient();
return await http.Get<HereJson>($"https://browse.search.hereapi.com/v1/browse?at={latitude},{longitude}&limit=1&apiKey={HereApiKey}", cancellationToken);
return await http.Get<HereJson>($"https://browse.search.hereapi.com/v1/browse?at={latitude},{longitude}&lang=en-US&limit=1&apiKey={HereApiKey}", cancellationToken);
}
catch (Exception ex)
{
Expand Down
2 changes: 1 addition & 1 deletion MM.API/MM.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<Compile Remove="Functions\StoreFunction.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.33.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.34.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.14.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.13" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.10.0" />
Expand Down
2 changes: 1 addition & 1 deletion MM.Shared/Helper/ImageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public enum PhotoType
PhotoValidation
}

public static string GetNoUserPhoto => "img/noimage.png";
public static string GetNoUserPhoto => "noimage.png";

public static string GetPhotoContainer(PhotoType type)
{
Expand Down
2 changes: 1 addition & 1 deletion MM.WEB/Resources/BuildDate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023.05.14
2023.06.11
1 change: 0 additions & 1 deletion MM.WEB/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@

<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script src="js/lazysizes.min.js" async=""></script>
<script src="_content/BrowserInterop/scripts.js" async=""></script>

<!--check if webassembly is supported-->
Expand Down
3 changes: 0 additions & 3 deletions MM.WEB/wwwroot/js/lazysizes.min.js

This file was deleted.

0 comments on commit 9fbafc6

Please sign in to comment.