fix(core): update

This commit is contained in:
2018-11-05 23:52:39 +01:00
parent 373b02adb4
commit b65f3af9cf
3 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@ export class LogdnaAccount {
* sends a logmessage
* async, so it returns a Promise. In most cases it does not make sense to wait for it though.
*/
public async sendLogDnaMessage(logdnaMessageArg: LogdnaMessage) {
public async sendLogdnaMessage(logdnaMessageArg: LogdnaMessage) {
const lm = logdnaMessageArg;
const euc = encodeURIComponent;
@ -56,7 +56,7 @@ export class LogdnaAccount {
* convenience function for smartlog
*/
public async sendSmartlogPackage(smartlogPackageArg: ILogPackage) {
this.sendLogDnaMessage(LogdnaMessage.fromSmartLogPackage(smartlogPackageArg));
this.sendLogdnaMessage(LogdnaMessage.fromSmartLogPackage(smartlogPackageArg));
}
/**