add missing cache

This commit is contained in:
Tobias Koppers 2019-01-19 13:12:43 +01:00
parent 18aca2fcb1
commit 0e62bdb74a
1 changed files with 5 additions and 1 deletions

View File

@ -191,7 +191,11 @@ class NormalModule extends Module {
* @returns {string | null} an identifier for library inclusion
*/
libIdent(options) {
return contextify(options.context, this.userRequest);
return contextify(
options.context,
this.userRequest,
options.associatedObjectForCache
);
}
/**