github-repository-provider 7.25.48 → 7.25.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "7.25.48",
3
+ "version": "7.25.49",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -113,7 +113,7 @@ export class GithubRepository extends Repository {
113
113
 
114
114
  // TODO why does this happen ?
115
115
  if (!response.ok || !json.object.sha) {
116
- throw new Error(`No refId for '${this.name}' '${ref}'`);
116
+ throw new Error(`No refId for '${this.fullName}' '${ref}'`);
117
117
  }
118
118
 
119
119
  return json.object.sha;