Skip to content

Commit

Permalink
refactor(Sticker): rename Snowflake variable (#5575)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranet committed Apr 30, 2021
1 parent f830eb7 commit af00ec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/structures/Sticker.js
Expand Up @@ -2,7 +2,7 @@

const Base = require('./Base');
const { StickerFormatTypes } = require('../util/Constants');
const Snowflake = require('../util/SnowflakeUtil');
const SnowflakeUtil = require('../util/SnowflakeUtil');

/**
* Represents a Sticker.
Expand Down Expand Up @@ -60,7 +60,7 @@ class Sticker extends Base {
* @readonly
*/
get createdTimestamp() {
return Snowflake.deconstruct(this.id).timestamp;
return SnowflakeUtil.deconstruct(this.id).timestamp;
}

/**
Expand Down

0 comments on commit af00ec8

Please sign in to comment.