Skip to content

Commit

Permalink
Update QuestionsProvider.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Mar 25, 2024
1 parent f0105c9 commit fe0d11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MyApp.ServiceInterface/Data/QuestionsProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public static string GetQuestionPath(int id)
public static string GetModelAnswerPath(int id, string model)
{
var (dir1, dir2, fileId) = id.ToFileParts();
var path = $"{dir1}/{dir2}/{fileId}.a.{model}.json";
var path = $"{dir1}/{dir2}/{fileId}.a.{model.Replace(':','-')}.json";
return path;
}

Expand Down

0 comments on commit fe0d11f

Please sign in to comment.