|
@ -2,6 +2,7 @@ package awais.instagrabber.fragments; |
|
|
|
|
|
|
|
|
import android.content.Context; |
|
|
import android.content.Context; |
|
|
import android.os.Bundle; |
|
|
import android.os.Bundle; |
|
|
|
|
|
import android.util.Log; |
|
|
import android.view.LayoutInflater; |
|
|
import android.view.LayoutInflater; |
|
|
import android.view.View; |
|
|
import android.view.View; |
|
|
import android.view.ViewGroup; |
|
|
import android.view.ViewGroup; |
|
@ -102,8 +103,13 @@ public class FavoritesFragment extends Fragment { |
|
|
// Log.d(TAG, "locationId: " + locationId); |
|
|
// Log.d(TAG, "locationId: " + locationId); |
|
|
final NavController navController = NavHostFragment.findNavController(this); |
|
|
final NavController navController = NavHostFragment.findNavController(this); |
|
|
final Bundle bundle = new Bundle(); |
|
|
final Bundle bundle = new Bundle(); |
|
|
bundle.putString("locationId", locationId); |
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
bundle.putLong("locationId", Long.parseLong(locationId)); |
|
|
navController.navigate(R.id.action_global_locationFragment, bundle); |
|
|
navController.navigate(R.id.action_global_locationFragment, bundle); |
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
Log.e(TAG, "init: ", e); |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
case HASHTAG: { |
|
|
case HASHTAG: { |
|
|