Extra doube-quote

Fix for #2624
This commit is contained in:
Rob Kresha 2020-05-10 14:57:26 -05:00
parent b43e7e5930
commit 8321ff3126

View file

@ -340,13 +340,13 @@ public class DateUtil {
t = t / 60; t = t / 60;
if (t != 1) unit = resourceHelper.gs(R.string.unit_hours); if (t != 1) unit = resourceHelper.gs(R.string.unit_hours);
if (t > 24) { if (t > 24) {
unit = resourceHelper.gs(R.string.unit_day) + "\""; unit = resourceHelper.gs(R.string.unit_day);
t = t / 24; t = t / 24;
if (t != 1) unit = resourceHelper.gs(R.string.unit_days) + "\""; if (t != 1) unit = resourceHelper.gs(R.string.unit_days);
if (t > 28) { if (t > 28) {
unit = resourceHelper.gs(R.string.unit_week) + "\""; unit = resourceHelper.gs(R.string.unit_week);
t = t / 7; t = t / 7;
if (t != 1) unit = resourceHelper.gs(R.string.unit_weeks) + "\""; if (t != 1) unit = resourceHelper.gs(R.string.unit_weeks);
} }
} }
} }