Skip to content

Fix date template #3226

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Nov 27, 2019
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
771ed58
Merge remote-tracking branch 'refs/remotes/commons-app/master'
misaochan Jul 28, 2018
d888b52
Merge remote-tracking branch 'refs/remotes/commons-app/master'
misaochan Jul 31, 2018
11c3772
Add Traceur for getting meaningful RxJava stack traces (#1832)
maskaravivek Aug 17, 2018
4c476e7
Hotfix for overwrite issue in 2.8.0 (#1838)
neslihanturan Aug 20, 2018
b743d02
Versioning and changelog for v2.8.2 (#1842)
misaochan Aug 20, 2018
efb8c5a
Merge branch '2.8-release' of https://github.com/commons-app/apps-and…
misaochan Aug 30, 2018
2db4e19
Merge remote-tracking branch 'refs/remotes/commons-app/master'
misaochan Sep 24, 2018
a900b1d
Merge remote-tracking branch 'refs/remotes/commons-app/master'
misaochan Oct 26, 2018
dccf73a
Merge remote-tracking branch 'refs/remotes/commons-app/master'
misaochan Dec 8, 2018
f818640
Merge remote-tracking branch 'upstream/master'
misaochan Jan 2, 2019
6b063e6
Merge remote-tracking branch 'upstream/master'
misaochan Jan 3, 2019
1e5b1c9
Merge branch 'master' of https://github.com/commons-app/apps-android-…
misaochan Jan 3, 2019
7d8e001
Merge remote-tracking branch 'upstream/master'
misaochan Jan 4, 2019
d043ab4
Merge remote-tracking branch 'upstream/master'
misaochan Jan 4, 2019
50bba7e
Merge remote-tracking branch 'upstream/master'
misaochan Apr 18, 2019
eedc64a
Merge remote-tracking branch 'upstream/master'
misaochan Jul 16, 2019
ec8874e
Merge remote-tracking branch 'upstream/master'
misaochan Nov 27, 2019
7c45736
Fix data template for other source
misaochan Nov 27, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public class Contribution extends Media {
//{{According to EXIF data|2009-01-09}}
private static final String TEMPLATE_DATE_ACC_TO_EXIF = "{{According to EXIF data|%s}}";

//{{date|2009|1|9}} → 9 January 2009
private static final String TEMPLATE_DATA_OTHER_SOURCE = "{{date|%s}}";
//2009-01-09 → 9 January 2009
private static final String TEMPLATE_DATA_OTHER_SOURCE = "%s";

public static Creator<Contribution> CREATOR = new Creator<Contribution>() {
@Override
Expand Down