Skip to content
This repository has been archived by the owner on Oct 29, 2022. It is now read-only.

Commit

Permalink
Fixes #34 fallback to versionNumber if versionLabel is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
alebianco committed Mar 3, 2014
1 parent 1b61c83 commit f8ee9d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ internal class Tracker implements ITracker {
const ns:Namespace = descriptor.namespace();
if (appID == null) appID = descriptor.ns::id[0];
appName = descriptor.ns::filename[0] || "";
appVersion = descriptor.ns::versionLabel[0] || "";
appVersion = descriptor.ns::versionLabel[0] || descriptor.ns::versionNumber[0] || "";
}
private function measureCampaign():void {
if (hasCampaignData()) {
Expand Down

0 comments on commit f8ee9d3

Please sign in to comment.