From: Lennart Rosam Date: Tue, 3 Jul 2012 23:37:06 +0000 (+0200) Subject: Remove version specific check as we do not know when this will be fixed. X-Git-Tag: oc-android-1.4.3~317 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/75df6eccdf778a5fb7806aaa717c6d5eb4a960f5 Remove version specific check as we do not know when this will be fixed. --- diff --git a/src/eu/alefzero/owncloud/ui/fragment/FileDetailFragment.java b/src/eu/alefzero/owncloud/ui/fragment/FileDetailFragment.java index 9850b652..9bcf9dee 100644 --- a/src/eu/alefzero/owncloud/ui/fragment/FileDetailFragment.java +++ b/src/eu/alefzero/owncloud/ui/fragment/FileDetailFragment.java @@ -353,7 +353,7 @@ public class FileDetailFragment extends SherlockFragment implements * @return True, if ownCloud the ownCloud version is supporting creationg time */ private boolean ocVersionSupportsTimeCreated(){ - if(mIntent != null){ + /* if(mIntent != null){ Account ocAccount = mIntent.getParcelableExtra(FileDownloader.EXTRA_ACCOUNT); if(ocAccount != null){ AccountManager accManager = (AccountManager) getActivity().getSystemService(Context.ACCOUNT_SERVICE); @@ -363,7 +363,7 @@ public class FileDetailFragment extends SherlockFragment implements return true; } } - } + }*/ return false; }