1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-26 01:28:50 -05:00

Fix possible NPE.

This commit is contained in:
Kris Wong 2010-12-17 17:25:27 +00:00
parent 3dd777053c
commit bb5052f848

View File

@ -741,7 +741,7 @@ public class WebDavStore extends Store
if (formAction == null) if (formAction == null)
{ {
// If there is no form action, try using our redirect URL from the initial connection. // If there is no form action, try using our redirect URL from the initial connection.
if (info.redirectUrl != null && !info.redirectUrl.equals("")) if (info != null && info.redirectUrl != null && !info.redirectUrl.equals(""))
{ {
loginUrl = info.redirectUrl; loginUrl = info.redirectUrl;