Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e48aa9c3 authored by David A. Velasco's avatar David A. Velasco
Browse files

Merge pull request #65 from owncloud/fix_nullPointerException_quota

Fix problems reading quota values: NullPointerException
parents 67d80002 409e8d66
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -139,7 +139,9 @@ public class WebdavEntry {
                try {
                    mQuotaUsedBytes = new BigDecimal(quotaUsedBytesSt);
                } catch (NumberFormatException e) {
                    Log_OC.w(TAG, "No value for QuotaUsedBytes");
                    Log_OC.w(TAG, "No value for QuotaUsedBytes - NumberFormatException");
                } catch (NullPointerException e ){
                    Log_OC.w(TAG, "No value for QuotaUsedBytes - NullPointerException");
                }
                Log_OC.d(TAG , "QUOTA_USED_BYTES " + quotaUsedBytesSt );
            }
@@ -151,6 +153,8 @@ public class WebdavEntry {
                try {
                    mQuotaAvailableBytes = new BigDecimal(quotaAvailableBytesSt);
                } catch (NumberFormatException e) {
                    Log_OC.w(TAG, "No value for QuotaAvailableBytes - NumberFormatException");
                } catch (NullPointerException e ){
                    Log_OC.w(TAG, "No value for QuotaAvailableBytes");
                }
                Log_OC.d(TAG , "QUOTA_AVAILABLE_BYTES " + quotaAvailableBytesSt );