Skip to content

Commit

Permalink
Fix reload chats after chat delete
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscant committed Mar 20, 2019
1 parent 86bedb8 commit 455b67b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev/webpack.appfd.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = new Config().extend({
}),
// CC new FaviconsPlugin('images/user_logo.png'),
new webpack.DefinePlugin({
APP_VERSION: JSON.stringify('1.4.11, 14 March 2019'),
APP_VERSION: JSON.stringify('1.4.12, 20 March 2019'),
// CC SET ABOVE: API: JSON.stringify(BASE_URL+'/api/'),
FACEBOOK_APPID: JSON.stringify('134980666550322'),
FACEBOOK_GRAFFITI_APPID: JSON.stringify('115376591981611'),
Expand Down
3 changes: 2 additions & 1 deletion http/js/iznik/views/pages/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,8 @@ define([
summary: true
}
}).then(function () {
window.location.reload()
// CC window.location.reload()
Router.navigate("/chats", true)
})
})
})
Expand Down
2 changes: 1 addition & 1 deletion mobile/freegle/android/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="539" id="org.ilovefreegle.direct" version="1.4.11" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget android-versionCode="540" id="org.ilovefreegle.direct" version="1.4.12" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Freegle</name>
<description>Offer and request free items on your local Freegle reuse group</description>
<author />
Expand Down
2 changes: 1 addition & 1 deletion mobile/freegle/ios/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.ilovefreegle.iphone" ios-CFBundleVersion="167" version="1.4.11" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="org.ilovefreegle.iphone" ios-CFBundleVersion="168" version="1.4.12" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Freegle</name>
<description>Offer and request free items on your local Freegle reuse group</description>
<author />
Expand Down

0 comments on commit 455b67b

Please sign in to comment.