Skip to content

Commit

Permalink
v0.2.6 bugfix/change device info in event bus (#25)
Browse files Browse the repository at this point in the history
* fix getting package name error

* fix
  • Loading branch information
yumiguan authored Jun 3, 2019
1 parent a2ac8e6 commit b8c5a37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lyrebird_ios/device_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ def publish_devices_info_event(self, online_devices, app_name):
app_info = device_info.get_app_info(app_name)
if app_info.get('AppName'):
message_info['app'] = {
'name': app_info['AppName'],
'appName': app_info['AppName'],
'version': app_info['VersionNumber'],
'build': app_info['BuildNumber'],
'bundleID': app_info['BundleID']
'packageName': app_info['BundleID']
}
except Exception:
_log.error('Can\'t read app info')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='lyrebird-ios',
version='0.2.5',
version='0.2.6',
packages=['lyrebird_ios'],
url='https://github.com/meituan/lyrebird-ios',
author='HBQA',
Expand Down

0 comments on commit b8c5a37

Please sign in to comment.