From 975531c42c283ee07498c1b516b7a462f0b53c4d Mon Sep 17 00:00:00 2001 From: "byte[]" Date: Tue, 31 Dec 2019 23:48:31 -0500 Subject: [PATCH] that was the wrong fix --- lib/search/date_parser.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/search/date_parser.ex b/lib/search/date_parser.ex index a7034d63..146c175b 100644 --- a/lib/search/date_parser.ex +++ b/lib/search/date_parser.ex @@ -106,8 +106,8 @@ defmodule Search.DateParser do |> ignore() pos_2dig_int = - ascii_char('123456789') - |> ascii_char('0123456789') + ascii_char('0123456789') + |> ascii_char('123456789') |> reduce(:to_int) year = integer(4)