From acca84db88b938549b463f0071da371815591479 Mon Sep 17 00:00:00 2001 From: Geoffrey Goh Date: Mon, 11 Apr 2016 19:13:42 -0700 Subject: [PATCH] make GetBundleUrl non-static --- windows/CodePush.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/CodePush.cs b/windows/CodePush.cs index ea40b72..0c3ca77 100644 --- a/windows/CodePush.cs +++ b/windows/CodePush.cs @@ -98,12 +98,12 @@ namespace ReactNative.CodePush return fileProperties.DateModified.ToUnixTimeMilliseconds(); } - public static string GetBundleUrl() + public string GetBundleUrl() { return GetBundleUrl(DEFAULT_JS_BUNDLE_NAME); } - public static string GetBundleUrl(string assetsBundleFileName) + public string GetBundleUrl(string assetsBundleFileName) { if (currentInstance == null) {