From 4749e470b58c6faa5c38627726c04fbe2bd1cdff Mon Sep 17 00:00:00 2001
From: str4d <str4d@mail.i2p>
Date: Fri, 9 Aug 2013 23:35:32 +0000
Subject: [PATCH] Fixed static reference

---
 src/net/i2p/android/router/fragment/I2PFragmentBase.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/net/i2p/android/router/fragment/I2PFragmentBase.java b/src/net/i2p/android/router/fragment/I2PFragmentBase.java
index 4d111bfd5..4848fed1e 100644
--- a/src/net/i2p/android/router/fragment/I2PFragmentBase.java
+++ b/src/net/i2p/android/router/fragment/I2PFragmentBase.java
@@ -1,6 +1,7 @@
 package net.i2p.android.router.fragment;
 
 import android.content.ComponentName;
+import android.content.Context;
 import android.content.Intent;
 import android.content.ServiceConnection;
 import android.content.SharedPreferences;
@@ -220,7 +221,7 @@ public abstract class I2PFragmentBase extends Fragment {
         intent.setClassName(getActivity(), "net.i2p.android.router.service.RouterService");
         Util.i(this + " calling bindService");
         _connection = new RouterConnection();
-        _triedBind = getActivity().bindService(intent, _connection, autoCreate ? getActivity().BIND_AUTO_CREATE : 0);
+        _triedBind = getActivity().bindService(intent, _connection, autoCreate ? Context.BIND_AUTO_CREATE : 0);
         Util.i(this + " bindService: auto create? " + autoCreate + " success? " + _triedBind);
         return _triedBind;
     }
-- 
GitLab