Skip to content

Commit

Permalink
Better date format (#13)
Browse files Browse the repository at this point in the history
* better date format
  • Loading branch information
brase authored Jun 4, 2020
1 parent 1535f8b commit 4f1d370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server/Smapi.fs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module Smapi =
|> List.pick (fun p -> if (p.Name = pname) then Some p else None)

let getEpisodesOfFeed eventStore id =
let yymmdd1 (date:System.DateTime) = date.ToString("yy.MM.dd")
let yymmdd1 (date:System.DateTime) = date.ToString("dd.MM.yyyy")
let result = getEpisodesOfFeedComposition eventStore (string id)
match result with
| Success (episodes) -> episodes
Expand Down

0 comments on commit 4f1d370

Please sign in to comment.